-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 1.44 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
[workspace]
resolver = "2"
members = ["cdn-proto", "cdn-broker", "cdn-marshal", "cdn-client", "tests"]
package.description = "The PushCDN is a distributed, scalable, and fault-tolerant pub/sub messaging system"
[workspace.dependencies]
tokio = { version = "1", default-features = false, features = [
"macros",
"rt",
"rt-multi-thread",
"parking_lot",
"tracing"
] }
jf-signature = { git = "https://github.com/EspressoSystems/jellyfish.git", tag = "jf-signature-v0.2.0", default-features = false, features = [
"std", "bls"
] }
rand = "0.8"
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"fmt",
"env-filter",
"json",
"ansi",
] }
clap = { version = "4", features = ["derive"] }
parking_lot = "0.12"
prometheus = { version = "0.13", default-features = false }
lazy_static = "1"
async-std = { version = "1", default-features = false, features = [
"tokio1",
"attributes",
] }
rkyv = { version = "0.7", features = ["validation"] }
derivative = "2"
rcgen = { version = "0.13", features = ["x509-parser", "crypto"] }
derive_more = { version = "1", features = ["deref"] }
# Dev dependencies (can't be defined explicitly in the workspace)
# TODO: figure out if this actually builds on non-test targets
criterion = { version = "0.5", features = ["html_reports", "async_tokio"] }
pprof = { version = "0.13", features = ["flamegraph", "criterion"] }