forked from getgrit/gritql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (37 loc) · 1.3 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
39
40
[package]
name = "marzano-gritmodule"
edition = "2021"
version.workspace = true
authors.workspace = true
description.workspace = true
documentation.workspace = true
homepage.workspace = true
license = "MIT"
publish = false
[lints]
rust.unused_crate_dependencies = "warn"
[dependencies]
marzano-core = { path = "../core", features = [], default-features = true }
marzano-language = { path = "../language" }
marzano-util = { path = "../util", features = ["finder"] }
grit-util = { path = "../grit-util" }
tree-sitter = { path = "../../vendor/tree-sitter-facade", package = "tree-sitter-facade-sg" }
serde = { version = "1.0.164", features = ["derive"] }
serde_yaml = { version = "0.9.25" }
anyhow = { version = "1.0.70" }
rand = { version = "0.8.5" }
git2 = { version = "0.17.2", default-features = false, features = [
"vendored-openssl",
] }
lazy_static = { version = "1.4.0" }
regex = { version = "1.7.3" }
tokio = { version = "1", features = ["full"] }
tempfile = { version = "3.7.0" }
log = { version = "0.4.19" }
reqwest = { version = "0.11.22", features = ["blocking", "json"] }
ignore = { version = "0.4.20" }
homedir = { version = "0.2.1" }
tracing = { version = "0.1.40", default-features = false, features = [] }
fs-err = { version = "2.11.0" }
[dev-dependencies]
insta = { version = "1.30.0", features = ["yaml"] }