Skip to content

Commit

Permalink
fix: add ssz feature back to engine types (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Jan 18, 2024
1 parent 8cfbb78 commit aaf5006
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/rpc-engine-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ alloy-rlp = { workspace = true, features = ["arrayvec", "derive"] }
alloy-primitives = { workspace = true, features = ["rlp", "serde"] }
alloy-rpc-types.workspace = true

ethereum_ssz_derive = { workspace = true, optional = true }
ethereum_ssz = { workspace = true, optional = true }

serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true

Expand All @@ -25,6 +28,7 @@ jsonrpsee-types = { version = "0.20", optional = true }

[features]
jsonrpsee-types = ["dep:jsonrpsee-types"]
ssz = ["dep:ethereum_ssz" ,"dep:ethereum_ssz_derive", "alloy-primitives/ssz", "alloy-rpc-types/ssz"]

[dev-dependencies]
alloy-primitives = { workspace = true, features = ["rand", "rlp", "serde", "arbitrary"] }
Expand Down

0 comments on commit aaf5006

Please sign in to comment.