[dependencies.alloy-eip2930]
default-features = false
version = "0.1.0"
[dependencies.alloy-eip7702]
default-features = false
version = "0.4"
[dependencies.alloy-primitives]
default-features = false
features = ["rlp"]
version = "0.8.11"
[dependencies.alloy-rlp]
default-features = false
features = ["derive"]
version = "0.3.9"
[dependencies.alloy-serde]
default-features = false
optional = true
version = "0.6"
[dependencies.arbitrary]
features = ["derive"]
optional = true
version = "1.3"
[dependencies.c-kzg]
default-features = false
optional = true
version = "1.0"
[dependencies.derive_more]
default-features = false
features = ["as_ref", "deref", "deref_mut", "from", "into_iterator"]
version = "1.0.0"
[dependencies.ethereum_ssz]
optional = true
version = "0.8"
[dependencies.ethereum_ssz_derive]
optional = true
version = "0.8"
[dependencies.once_cell]
default-features = false
features = ["race", "alloc"]
optional = true
version = "1.19"
[dependencies.serde]
default-features = false
features = ["derive", "alloc"]
optional = true
version = "1.0"
[dependencies.sha2]
default-features = false
optional = true
version = "0.10"
[dev-dependencies.alloy-primitives]
default-features = false
features = ["rand", "serde", "arbitrary"]
version = "0.8.11"
[dev-dependencies.arbitrary]
features = ["derive"]
version = "1.3"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.serde_json]
default-features = false
features = ["alloc"]
version = "1.0"
[features]
arbitrary = ["std", "kzg-sidecar", "dep:arbitrary", "alloy-primitives/arbitrary", "alloy-serde?/arbitrary", "alloy-eip2930/arbitrary", "alloy-eip7702/arbitrary", "alloy-eip7702/k256"]
default = ["std", "kzg-sidecar"]
k256 = ["alloy-eip7702/k256"]
kzg = ["kzg-sidecar", "sha2", "dep:c-kzg", "dep:once_cell"]
kzg-sidecar = ["sha2"]
serde = ["dep:alloy-serde", "dep:serde", "alloy-primitives/serde", "c-kzg?/serde", "alloy-eip2930/serde", "alloy-eip7702/serde"]
serde-bincode-compat = ["alloy-eip7702/serde-bincode-compat"]
sha2 = ["dep:sha2"]
ssz = ["std", "dep:ethereum_ssz", "dep:ethereum_ssz_derive"]
std = ["alloy-primitives/std", "alloy-rlp/std", "serde?/std", "c-kzg?/std", "once_cell?/std"]
[lib]
name = "alloy_eips"
path = "src/lib.rs"
[lints.clippy]
missing-const-for-fn = "warn"
option-if-let-else = "warn"
redundant-clone = "warn"
use-self = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
rust-2018-idioms = "deny"
unnameable-types = "warn"
unreachable-pub = "warn"
unused-must-use = "deny"
[lints.rustdoc]
all = "warn"
[package]
authors = ["Alloy Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Ethereum Improvement Proprosal (EIP) implementations"
edition = "2021"
exclude = ["benches/", "tests/"]
homepage = "https://github.com/alloy-rs/alloy"
license = "MIT OR Apache-2.0"
name = "alloy-eips"
readme = "README.md"
repository = "https://github.com/alloy-rs/alloy"
rust-version = "1.79"
version = "0.6.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]