forked from risc0/zeth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 824 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
[package]
name = "zeth-primitives"
version = "0.1.0"
edition = "2021"
[dependencies]
alloy-primitives = { version = "0.3", features = ["rlp", "serde"] }
alloy-rlp = { version = "0.3", default-features = false }
alloy-rlp-derive = { version = "0.3", default-features = false }
anyhow = "1.0"
bytes = { version = "1.1", default-features = false }
ethers-core = { version = "2.0", optional = true, features = ["optimism"] }
k256 = { version = "=0.13.1", features = ["std", "ecdsa"], default_features = false }
revm-primitives = { version = "1.1", optional = true }
rlp = "0.5.2"
serde = { version = "1.0", features = ["derive"] }
sha2 = "=0.10.6"
sha3 = "0.10"
thiserror = "1.0"
[dev-dependencies]
bincode = "1.3"
hex-literal = "0.4"
serde_json = "1.0"
[features]
ethers = ["dep:ethers-core"]
revm = ["dep:revm-primitives"]