forked from paradigmxyz/reth-exex-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 872 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
[package]
name = "op-bridge"
version = "0.0.0"
publish = false
edition.workspace = true
license.workspace = true
[dependencies]
# reth
reth-execution-types.workspace = true
reth-exex.workspace = true
reth-node-api.workspace = true
reth-node-ethereum.workspace = true
reth-primitives.workspace = true
reth-tracing.workspace = true
reth.workspace = true
reth-evm.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-sol-types.workspace = true
alloy-eips.workspace = true
# misc
eyre.workspace = true
futures.workspace = true
rusqlite = { version = "0.32", features = ["bundled"] }
tokio.workspace = true
[dev-dependencies]
# reth
reth-exex-test-utils.workspace = true
reth-testing-utils.workspace = true
alloy-primitives = { workspace = true, features = ["rand"]}
# alloy
alloy-consensus.workspace = true
tokio.workspace = true
rand = "0.8"
tempfile = "3"