Skip to content

Commit

Permalink
fix(eips): no-std compat (#1222)
Browse files Browse the repository at this point in the history
* fix(eips): no-std compat

* fix(eips): no-std compat
  • Loading branch information
refcell authored Aug 30, 2024
1 parent bfbbc32 commit 24e97da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/eips/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ derive_more = { workspace = true, features = [
"as_ref",
"deref",
"deref_mut",
], optional = true }
], default-features = false, optional = true }
once_cell = { workspace = true, features = ["race", "alloc"], optional = true }
sha2 = { workspace = true, optional = true }

Expand All @@ -59,7 +59,7 @@ serde_json.workspace = true

[features]
default = ["std", "kzg-sidecar"]
std = ["alloy-primitives/std", "alloy-rlp/std",
std = ["alloy-primitives/std", "alloy-rlp/std", "derive_more/std",
"serde?/std", "c-kzg?/std", "once_cell?/std"]
serde = ["dep:alloy-serde", "dep:serde", "alloy-primitives/serde",
"c-kzg?/serde", "alloy-eip2930/serde", "alloy-eip7702/serde"]
Expand Down

0 comments on commit 24e97da

Please sign in to comment.