forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathCargo.toml
46 lines (38 loc) · 1.04 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
[package]
name = "taiko-reth-evm"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
# Reth
reth-chainspec = { workspace = true, features = ["taiko"] }
reth-evm.workspace = true
reth-primitives = { workspace = true, features = ["taiko"] }
reth-revm = { workspace = true, features = ["taiko"] }
reth-prune-types.workspace = true
reth-execution-types.workspace = true
reth-consensus.workspace = true
reth-rpc-types-compat.workspace = true
# Taiko
taiko-reth-beacon-consensus.workspace = true
# Ethereum
revm-primitives = { workspace = true, features = ["taiko"] }
# Alloy
alloy-eips.workspace = true
alloy-sol-types.workspace = true
# Misc
tracing.workspace = true
flate2.workspace = true
[dev-dependencies]
reth-testing-utils.workspace = true
reth-revm = { workspace = true, features = ["test-utils", "taiko"] }
secp256k1.workspace = true
serde_json.workspace = true
[features]
default = ["std"]
std = []