-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.56 KB
/
Cargo.toml
File metadata and controls
55 lines (50 loc) · 1.56 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
[workspace]
members = [
"chain",
"client",
"inspector",
"types",
]
resolver = "2"
[workspace.dependencies]
alto-client = { version = "0.0.6", path = "client" }
alto-types = { version = "0.0.6", path = "types" }
commonware-broadcast = { version = "0.0.47" }
commonware-codec = { version = "0.0.47" }
commonware-consensus = { version = "0.0.47" }
commonware-cryptography = { version = "0.0.47" }
commonware-deployer = { version = "0.0.47" }
commonware-macros = { version = "0.0.47" }
commonware-p2p = { version = "0.0.47" }
commonware-resolver = { version = "0.0.47" }
commonware-runtime = { version = "0.0.47" }
commonware-storage = { version = "0.0.47" }
commonware-stream = { version = "0.0.47" }
commonware-utils = { version = "0.0.47" }
thiserror = "2.0.12"
bytes = "1.7.1"
rand = "0.8.5"
prost = "0.13.5"
prost-build = "0.13.5"
futures = "0.3.31"
futures-util = "0.3.31"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
governor = "0.6.3"
prometheus-client = "0.22.3"
clap = "4.5.18"
[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