forked from obi1kenobi/trustfall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1.22 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
41
42
43
44
[package]
name = "trustfall_core"
version = "0.7.1"
license = "Apache-2.0"
description = "The trustfall query engine, empowering you to query everything."
repository = "https://github.com/obi1kenobi/trustfall"
readme = "../README.md"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
__private = []
[lib]
name = "trustfall_core"
path = "src/lib.rs"
test = true
doc = true
crate-type = ["lib"]
[dependencies]
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = { workspace = true }
async-graphql-parser = { workspace = true }
async-graphql-value = { workspace = true }
maplit = { workspace = true }
smallvec = { version = "1.6.1", features = ["serde"] }
regex = { workspace = true }
thiserror = { workspace = true }
itertools = { workspace = true }
[dev-dependencies]
ron = { workspace = true }
trustfall_filetests_macros = { path = "../trustfall_filetests_macros", version = "0.2.0" }
similar-asserts = { workspace = true, features = ["serde"] }
globset = { workspace = true }
walkdir = { workspace = true }