chore: make trie-common no-std (#13473)

This commit is contained in:
Matthias Seitz
2024-12-20 12:16:09 +01:00
committed by GitHub
parent 30e8c78171
commit 3966130844
13 changed files with 46 additions and 10 deletions

View File

@ -58,6 +58,22 @@ serde_json.workspace = true
serde_with.workspace = true
[features]
default = ["std"]
std = [
"alloy-consensus/std",
"alloy-genesis/std",
"alloy-primitives/std",
"alloy-rlp/std",
"alloy-rpc-types-eth?/std",
"alloy-serde?/std",
"alloy-trie/std",
"bytes?/std",
"derive_more/std",
"nybbles/std",
"reth-primitives-traits/std",
"serde?/std",
"serde_with?/std"
]
eip1186 = [
"alloy-rpc-types-eth/serde",
"dep:alloy-serde",