[package] name = "linera-alloy-rpc-types-beacon" description = "Rpc-types related to beacon" version.workspace = true edition.workspace = true rust-version.workspace = true authors.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true exclude.workspace = true [lints] workspace = true [dependencies] # ethereum linera-alloy-eips = { workspace = true, features = ["serde"] } linera-alloy-rpc-types-engine.workspace = true linera-alloy-primitives.workspace = true # ssz ethereum_ssz_derive = { workspace = true, optional = true } ethereum_ssz = { workspace = true, optional = true } serde.workspace = true serde_with.workspace = true thiserror.workspace = true [dev-dependencies] serde_json.workspace = true [features] ssz = [ "dep:ethereum_ssz", "dep:ethereum_ssz_derive", "linera-alloy-primitives/ssz", "linera-alloy-rpc-types-engine/ssz", ]