Skip to content

Commit

Permalink
fix wasm build
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Apr 4, 2024
1 parent 5eda6ad commit d54cf29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ sha2 = { version = "0.10", default-features = false }

# kzg
thiserror = { workspace = true, optional = true }
c-kzg = { workspace = true, features = ["serde"], optional = true }
c-kzg = { workspace = true, features = ["std", "serde"], optional = true }

# arbitrary
arbitrary = { workspace = true, features = ["derive"], optional = true }
Expand All @@ -38,7 +38,7 @@ serde_json.workspace = true

[features]
default = ["std"]
std = ["alloy-eips/std", "c-kzg/std", "sha2/std"]
std = ["alloy-eips/std", "sha2/std"]
k256 = ["alloy-primitives/k256"]
kzg = ["std", "dep:c-kzg", "dep:thiserror", "alloy-eips/kzg"]
arbitrary = ["std", "dep:arbitrary", "alloy-eips/arbitrary"]
Expand Down

0 comments on commit d54cf29

Please sign in to comment.