-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.28 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
45
46
47
48
49
50
51
[package]
name = "arde"
version = "0.2.0"
edition = "2021"
description = "Another Rust Datalog Engine"
license = "Unlicense"
documentation = "https://docs.rs/arde"
repository = "https://github.com/Jengamon/arde"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "query_bench"
harness = false
[[test]]
name = "eval_tests"
harness = false
[[test]]
name = "parser_tests"
harness = false
[dependencies]
futures = { version = "0.3.28", optional = true }
itertools = "0.10.5"
nom = "7.1.3"
thiserror = "1.0.40"
tracing = "0.1.37"
uuid = { version = "1.3.2", features = ["macro-diagnostics"] }
serde = { version = "1.0", features = ["derive"], optional = true }
flume = { version = "0.11.0", optional = true }
winnow = "0.5.15"
[features]
default = []
async = ["dep:futures", "dep:flume"]
serde_internal = ["dep:serde", "uuid/serde"]
[dev-dependencies]
criterion = { version = "0.5.0", features = ["async_tokio", "html_reports"] }
serde_json = "1.0"
arde = { path = ".", features = ["async", "serde_internal"] }
tokio = { version = "1.28.1", features = ["rt-multi-thread"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
datatest-stable = "0.1.3"
similar = "2.2.1"
[workspace]
resolver = "2"
members = ["site", "."]