-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathCargo.toml
68 lines (63 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[workspace]
members = [
"broadcast",
"consensus",
"cryptography",
"macros",
"p2p",
"runtime",
"storage",
"utils",
"examples/bridge",
"examples/chat",
"examples/log",
"examples/vrf",
]
resolver = "2"
[workspace.dependencies]
commonware-broadcast = { version = "0.0.3", path = "broadcast" }
commonware-consensus = { version = "0.0.10", path = "consensus" }
commonware-cryptography = { version = "0.0.21", path = "cryptography" }
commonware-macros = { version = "0.0.12", path = "macros" }
commonware-p2p = { version = "0.0.32", path = "p2p" }
commonware-runtime = { version = "0.0.18", path = "runtime" }
commonware-storage = { version = "0.0.13", path = "storage" }
commonware-stream = { version = "0.0.10", path = "stream" }
commonware-utils = { version = "0.0.13", path = "utils" }
thiserror = "1.0.63"
bytes = "1.7.1"
sha2 = "0.10.8"
rand = "0.8.5"
rand_distr = "0.4.3"
futures = "0.3.30"
futures-util = "0.3.30"
tokio = "1.40.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
prost = "0.13.2"
prost-build = "0.13.2"
governor = "0.6.3"
prometheus-client = "0.22.3"
clap = "4.5.18"
criterion = "0.5.1"
zstd = "0.13.2"
chrono = "0.4.39"
ratatui = "0.27.0"
crossterm = "0.28.1"
serde_json = "1.0.122"
cfg-if = "1.0.0"
[profile.bench]
# Because we enable overflow checks in "release," we should benchmark with them.
overflow-checks = true
[profile.dev]
# Although overflow checks are enabled by default in "dev", we explicitly
# enable them here for clarity.
overflow-checks = true
[profile.release]
# To guard against unexpected behavior in production, we enable overflow checks in
# "release" although they incur some performance penalty.
overflow-checks = true
[profile.test]
# Although overflow checks are enabled by default in "test", we explicitly
# enable them here for clarity.
overflow-checks = true