-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (67 loc) · 2.81 KB
/
Cargo.toml
File metadata and controls
76 lines (67 loc) · 2.81 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
[workspace]
members = ["cli", "da-exex", "da-server", "smt-server", "solver"]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.82"
license = "Apache-2.0"
[workspace.dependencies]
# reth
reth = { git = "https://github.com/paradigmxyz/reth" }
reth-chainspec = { git = "https://github.com/paradigmxyz/reth" }
reth-discv5 = { git = "https://github.com/paradigmxyz/reth" }
reth-execution-errors = { git = "https://github.com/paradigmxyz/reth" }
reth-execution-types = { git = "https://github.com/paradigmxyz/reth" }
reth-exex = { git = "https://github.com/paradigmxyz/reth", features = ["serde"] }
reth-eth-wire = { git = "https://github.com/paradigmxyz/reth" }
reth-evm = { git = "https://github.com/paradigmxyz/reth" }
reth-network = { git = "https://github.com/paradigmxyz/reth", features = ["test-utils"] }
reth-network-api = { git = "https://github.com/paradigmxyz/reth" }
reth-network-peers = { git = "https://github.com/paradigmxyz/reth" }
reth-node-api = { git = "https://github.com/paradigmxyz/reth" }
reth-node-ethereum = { git = "https://github.com/paradigmxyz/reth" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth" }
reth-provider = { git = "https://github.com/paradigmxyz/reth" }
reth-revm = { git = "https://github.com/paradigmxyz/reth" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth" }
reth-tracing = { git = "https://github.com/paradigmxyz/reth" }
# alloy
alloy = { version = "0.6", features = ["full"] }
alloy-eips = { version = "0.5", default-features = false }
alloy-consensus = { version = "0.5", default-features = false }
alloy-provider = { version = "0.6", default-features = false }
alloy-primitives = { version = "0.8", features = ["getrandom"] }
alloy-rlp = "0.3"
alloy-rpc-types = { version = "0.5", features = [
"eth",
], default-features = false }
alloy-signer = { version = "0.5", default-features = false }
alloy-signer-local = { version = "0.5", default-features = false }
alloy-sol-types = { version = "0.8", features = ["json"] }
alloy-transport-http = { version = "0.6", default-features = false }
futures = "0.3"
futures-util = "0.3"
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.12", features = ["blocking"] }
bytes = { version = "1" }
# cli
clap = { version = "4.5" }
anyhow = { version = "1" }
# da-server
axum = { version = "0.7" }
aws-config = { version = "1.5", features = ["behavior-version-latest"] }
aws-sdk-s3 = { version = "1.60" }
uuid = { version = "1.11", features = ["v4", "fast-rng"] }
dotenvy = { version = "0.15" }
# smt-server
sha3 = { version = "0.10" }
parking_lot = { version = "0.12" }
rand = { version = "0.8"}
# serde
serde = "1"
serde_json = "1"
# misc
eyre = "0.6"
# testing
reth-exex-test-utils = { git = "https://github.com/paradigmxyz/reth" }
reth-testing-utils = { git = "https://github.com/paradigmxyz/reth" }