-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
42 lines (40 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[workspace]
resolver = "2"
members = [
"crates/codemod-core",
"crates/codemod-cli",
"crates/codemod-languages",
]
[workspace.package]
version = "0.1.2"
edition = "2021"
authors = ["codemod-pilot contributors"]
license = "Apache-2.0"
repository = "https://github.com/codemod-pilot/codemod-pilot"
description = "Transform your codebase by example. No AST knowledge required."
rust-version = "1.75.0"
readme = "README.md"
keywords = ["codemod", "refactoring", "ast", "tree-sitter", "code-transformation"]
categories = ["development-tools", "command-line-utilities"]
[workspace.dependencies]
tree-sitter = "0.24"
tree-sitter-javascript = "0.23"
tree-sitter-typescript = "0.23"
tree-sitter-python = "0.23"
tree-sitter-go = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
anyhow = "1.0"
thiserror = "2.0"
clap = { version = "4.5", features = ["derive", "color"] }
colored = "2.1"
similar = "2.6"
walkdir = "2.5"
globset = "0.4"
rayon = "1.10"
indicatif = "0.17"
dialoguer = "0.11"
log = "0.4"
env_logger = "0.11"
chrono = "0.4"