-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
88 lines (83 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "snapchain"
version = "0.1.1"
edition = "2021"
default-run = "snapchain"
[lib]
name = "snapchain"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.40.0", features = ["full"] }
tokio-stream = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.6"
tonic = "0.12.3"
prost = "0.13.3"
futures = "0.3.28"
futures-core = "0.3.31"
parking_lot = "0.12.1"
clap = { version = "4.3.0", features = ["derive"] }
libp2p = { version = "0.54.1", features = ["tokio", "gossipsub", "mdns", "noise", "macros", "tcp", "yamux", "quic", "request-response"] }
async-trait = "0.1.68"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "fmt", "json"] }
hex = "0.4.3"
ractor = "0.13.5"
bytes = "1.9.0"
informalsystems-malachitebft-core-consensus = { version = "0.0.1" }
informalsystems-malachitebft-engine = { version = "0.0.1" }
informalsystems-malachitebft-network = { version = "0.0.1" }
informalsystems-malachitebft-sync = { version = "0.0.1" }
informalsystems-malachitebft-core-types = { version = "0.0.1"}
informalsystems-malachitebft-config = { version = "0.0.1"}
informalsystems-malachitebft-codec = { version = "0.0.1"}
informalsystems-malachitebft-metrics = { version = "0.0.1" }
blake3 = "1.4.1"
tracing = "0.1.40"
thiserror = "1.0.66"
reqwest = { version = "0.12.9", features = ["json", "stream"] }
figment = { version = "0.10.19", features = ["env", "toml"] }
futures-util = "0.3.31"
url = "2.5.3"
alloy-transport = "0.8.0"
alloy-dyn-abi = { version = "0.8.15", features = ["eip712"] }
alloy-rlp = "0.3.9"
alloy-transport-http = "0.8.0"
alloy-sol-types = { version = "0.8.15", features = ["json"] }
alloy-provider = "0.8.0"
alloy-rpc-types = "0.8.0"
alloy-primitives = "0.8.14"
alloy-contract = "0.8.0"
ed25519-dalek = "2.1.1"
pre-commit = "0.5.2"
rocksdb = {git = "https://github.com/rust-rocksdb/rust-rocksdb.git", rev="1cf906dc4087f06631820f13855e6b27bd21b972", features=["multi-threaded-cf"]}
walkdir = "2.5.0"
once_cell = "1.20.2"
threadpool = "1.8.1"
rand = "0.8.5"
humantime-serde = "1.1.1"
humantime = "2.1.0"
itertools = "0.13.0"
cadence = "1.5.0"
tempfile = "3.13.0"
foundry-common = { git = "https://github.com/foundry-rs/foundry", rev="6b07c77eb1c1d1c4b56ffa7f79240254b73236d2" }
bs58 = "0.5.1"
chrono = "0.4.39"
tar = "0.4.40"
gzp = "0.11.3"
flate2 = "1.0.28"
eth-signature-verifier = { version = "0.3.0", path = "../eth-signature-verifier" }
fancy-regex = "0.14.0"
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-s3 = { version = "1.71.0", features = ["behavior-version-latest"] }
hyper = "1.5.1"
serde_qs = "0.13.0"
base64 = "0.22.1"
toml = "0.8.19"
[build-dependencies]
tonic-build = "0.9.2"
[dev-dependencies]
serial_test = "3.1.1"
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }
[package.metadata.precommit]
fmt = "cargo fmt --check --quiet"