-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathCargo.toml
More file actions
94 lines (88 loc) · 2.54 KB
/
Copy pathCargo.toml
File metadata and controls
94 lines (88 loc) · 2.54 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
members = [
"broadcast",
"codec",
"consensus",
"cryptography",
"deployer",
"macros",
"p2p",
"resolver",
"runtime",
"storage",
"utils",
"examples/bridge",
"examples/chat",
"examples/flood",
"examples/log",
"examples/vrf",
]
resolver = "2"
[workspace.dependencies]
commonware-broadcast = { version = "0.0.44", path = "broadcast" }
commonware-codec = { version = "0.0.44", path = "codec" }
commonware-consensus = { version = "0.0.44", path = "consensus" }
commonware-cryptography = { version = "0.0.44", path = "cryptography" }
commonware-deployer = { version = "0.0.44", path = "deployer", default-features = false }
commonware-macros = { version = "0.0.44", path = "macros" }
commonware-p2p = { version = "0.0.44", path = "p2p" }
commonware-resolver = { version = "0.0.44", path = "resolver" }
commonware-runtime = { version = "0.0.44", path = "runtime" }
commonware-storage = { version = "0.0.44", path = "storage" }
commonware-stream = { version = "0.0.44", path = "stream" }
commonware-utils = { version = "0.0.44", path = "utils" }
thiserror = "2.0.12"
bytes = "1.7.1"
sha2 = "0.10.8"
rand = "0.8.5"
rand_distr = "0.4.3"
futures = "0.3.31"
futures-util = "0.3.31"
tokio = "1.43.0"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
paste = "1.0.15"
prost = "0.13.5"
prost-build = "0.13.5"
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"
axum = "0.8.1"
bimap = "0.6.3"
reqwest = "0.12.12"
uuid = "1.15.1"
serde = "1.0.218"
serde_yaml = "0.9.34"
either = "1.13.0"
opentelemetry = "0.28.0"
opentelemetry-otlp = "0.28.0"
opentelemetry_sdk = "0.28.0"
tracing-opentelemetry = "0.29.0"
rayon = "1.10.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.release-with-debug]
inherits = "release"
# Setting debug to true instructs cargo to include debug symbols in the release
# binary (not to disable optimizations).
debug = true
[profile.test]
# Although overflow checks are enabled by default in "test", we explicitly
# enable them here for clarity.
overflow-checks = true