forked from eqlabs/pathfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (39 loc) · 911 Bytes
/
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
[profile.stripdebuginfo]
# Used by CI to lower binary size for test artifacts.
inherits = "test"
strip = "debuginfo"
[workspace]
members = [
"crates/common",
"crates/ethereum",
"crates/gateway-client",
"crates/gateway-test-fixtures",
"crates/gateway-types",
"crates/merkle-tree",
"crates/p2p",
"crates/p2p_bootstrap",
"crates/p2p_proto",
"crates/p2p_proto_derive",
"crates/pathfinder",
"crates/retry",
"crates/rpc",
"crates/serde",
"crates/stark_curve",
"crates/stark_hash",
"crates/stark_poseidon",
"crates/storage",
]
exclude = [
"crates/load-test",
"crates/stark_hash_python",
]
resolver = "2"
[workspace.dependencies]
anyhow = { version = "1.0.66" }
clap = { version = "4.1.13" }
fake = { version = "2.5.0", features = ["derive"] }
rand = "0.8.5"
serde = "1.0.160"
serde_json = "1.0.96"
thiserror = "1.0.37"
tokio = "1.24.2"