forked from ast-grep/ast-grep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 1.05 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
[workspace]
members = [
"crates/*",
"xtask",
"benches"
]
default-members = ["crates/*"]
[profile.release]
lto = true
[workspace.package]
version = "0.5.6"
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.63"
readme = "README.md"
[workspace.dependencies]
ast-grep-core = { path = "crates/core", version = "0.5.6" }
ast-grep-config = { path = "crates/config", version = "0.5.6" }
ast-grep-dynamic = { path = "crates/dynamic", version = "0.5.6" }
ast-grep-language = { path = "crates/language", version = "0.5.6" }
ast-grep-lsp = { path = "crates/lsp", version = "0.5.6" }
bit-set = { version = "0.5.3" }
ignore = { version = "0.4.20" }
regex = { version = "1.8.1" }
serde = { version = "1.0", features = ["derive"] }
tree-sitter = { version = "0.9.2", package = "tree-sitter-facade-sg" }
thiserror = "1.0.40"