chore: move IntegerList to reth-primitives-traits (#8948)

This commit is contained in:
joshieDo
2024-06-19 16:13:31 +02:00
committed by GitHub
parent a3fd112915
commit d0b241c0c2
16 changed files with 32 additions and 258 deletions

View File

@ -24,6 +24,10 @@ alloy-rpc-types-eth = { workspace = true, optional = true }
derive_more.workspace = true
revm-primitives.workspace = true
# misc
thiserror-no-std = { workspace = true, default-features = false }
roaring = "0.10.2"
# required by reth-codecs
modular-bitfield.workspace = true
bytes.workspace = true
@ -40,10 +44,11 @@ proptest.workspace = true
proptest-derive.workspace = true
test-fuzz.workspace = true
rand.workspace = true
serde_json.workspace = true
[features]
default = ["std"]
std = []
std = ["thiserror-no-std/std"]
test-utils = ["arbitrary"]
arbitrary = [
"dep:arbitrary",