-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.12 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
[package]
name = "sqrl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "sqrl_bench"
harness = false
[features]
default = ["replication"]
replication = []
[dev-dependencies]
assert_cmd = "0.11"
criterion = { version = "0.5.1", features = ["async_tokio"] }
crossbeam-utils = "0.8"
predicates = "1.0.0"
rand = "0.6.5"
tempfile = "3.0.7"
walkdir = "2.2.7"
panic-control = "0.1.4"
[dependencies]
clap = { version = "4.4.11", features = ["derive", "string", "env"] }
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.52"
chrono = { version = "0.4.31", features = ["serde"] }
bincode = "1.3.3"
glob = "0.3.1"
tracing = "0.1.40"
tracing-log = "0.2.0"
tracing-subscriber = "0.3.18"
anyhow = "1.0.79"
log = { version = "0.4.20", features = ["kv_unstable"] }
crossbeam-skiplist = "0.1.3"
dashmap = { version = "5.5.3", features = ["serde"] }
crossbeam-utils = "0.8"
rayon = "1.9.0"
tokio = { version = "1.36.0", features = ["full"] }
prost = "0.12.4"
tonic = "0.11.0"
futures = "0.3.30"
[build-dependencies]
tonic-build = "0.11.0"