forked from ast-grep/ast-grep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 1.11 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/*",
"xtask",
"benches"
]
default-members = ["crates/*"]
resolver = "2"
[profile.release]
lto = true
[workspace.package]
version = "0.29.0"
authors = ["Herrington Darkholme <[email protected]>"]
edition = "2021"
license = "MIT"
documentation = "https://ast-grep.github.io/guide/introduction.html"
homepage = "https://ast-grep.github.io/"
repository = "https://github.com/ast-grep/ast-grep"
rust-version = "1.67"
readme = "README.md"
[workspace.dependencies]
ast-grep-core = { path = "crates/core", version = "0.29.0" }
ast-grep-config = { path = "crates/config", version = "0.29.0" }
ast-grep-dynamic = { path = "crates/dynamic", version = "0.29.0" }
ast-grep-language = { path = "crates/language", version = "0.29.0" }
ast-grep-lsp = { path = "crates/lsp", version = "0.29.0" }
bit-set = { version = "0.8.0" }
ignore = { version = "0.4.22" }
regex = { version = "1.10.4" }
serde = { version = "1.0.200", features = ["derive"] }
tree-sitter = { version = "0.22.0", package = "tree-sitter-facade-sg" }
thiserror = "1.0.59"
schemars = "0.8.17"
anyhow = "1.0.82"