-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
44 lines (39 loc) · 1.03 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
[package]
name = "rollup"
version = "0.0.0"
publish = false
edition.workspace = true
license.workspace = true
[dependencies]
# reth
reth-chainspec.workspace = true
reth-execution-errors.workspace = true
reth-execution-types.workspace = true
reth-exex.workspace = true
reth-node-api.workspace = true
reth-node-ethereum.workspace = true
reth-primitives.workspace = true
reth-provider.workspace = true
reth-revm.workspace = true
reth-tracing.workspace = true
reth.workspace = true
# alloy
alloy-consensus = { workspace = true, features = ["k256"] }
alloy-eips.workspace = true
alloy-genesis = "0.5.4"
alloy-primitives.workspace = true
alloy-rlp.workspace = true
alloy-sol-types.workspace = true
# async
futures-util.workspace = true
tokio.workspace = true
# misc
eyre.workspace = true
foundry-blob-explorers = "0.7"
once_cell = "1"
rusqlite = { version = "0.31.0", features = ["bundled"] }
serde_json = "1"
[dev-dependencies]
reth-testing-utils.workspace = true
secp256k1 = "0.29"
reth-transaction-pool = { workspace = true, features = ["test-utils"] }