mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix/ci: check individual crates in ci, fix features (#6472)
This commit is contained in:
@ -14,17 +14,16 @@ workspace = true
|
||||
[dependencies]
|
||||
# ethereum
|
||||
alloy-chains.workspace = true
|
||||
alloy-primitives = { workspace = true, features = ["rand", "rlp"] }
|
||||
alloy-rlp = { workspace = true, features = ["arrayvec"] }
|
||||
alloy-primitives = { workspace = true, features = ["serde", "rand", "rlp"] }
|
||||
alloy-rlp = { workspace = true, features = ["arrayvec", "derive"] }
|
||||
|
||||
# used for forkid
|
||||
crc = "3"
|
||||
|
||||
# misc
|
||||
serde.workspace = true
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
thiserror.workspace = true
|
||||
|
||||
|
||||
# arbitrary utils
|
||||
arbitrary = { workspace = true, features = ["derive"], optional = true }
|
||||
proptest = { workspace = true, optional = true }
|
||||
@ -36,7 +35,6 @@ arbitrary = { workspace = true, features = ["derive"] }
|
||||
proptest.workspace = true
|
||||
proptest-derive.workspace = true
|
||||
|
||||
|
||||
[features]
|
||||
arbitrary = ["dep:arbitrary", "dep:proptest", "dep:proptest-derive"]
|
||||
optimism = []
|
||||
|
||||
Reference in New Issue
Block a user