alloy-eips 0.1.5

Ethereum Improvement Proprosal (EIP) implementations
Documentation
[dependencies.alloy-primitives]
default-features = false
features = ["rlp"]
version = "0.7.7"

[dependencies.alloy-rlp]
default-features = false
features = ["derive"]
version = "0.3"

[dependencies.alloy-serde]
default-features = false
optional = true
version = "0.1"

[dependencies.arbitrary]
features = ["derive"]
optional = true
version = "1.3"

[dependencies.c-kzg]
default-features = false
optional = true
version = "1.0"

[dependencies.derive_more]
optional = true
version = "0.99.17"

[dependencies.ethereum_ssz]
optional = true
version = "0.5"

[dependencies.ethereum_ssz_derive]
optional = true
version = "0.5"

[dependencies.k256]
default-features = false
features = ["ecdsa"]
optional = true
version = "0.13"

[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.7.7"

[dev-dependencies.arbitrary]
features = ["derive"]
version = "1.3"

[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"]
default = ["std", "kzg-sidecar"]
k256 = ["alloy-primitives/k256", "dep:k256"]
kzg = ["kzg-sidecar", "sha2", "dep:derive_more", "dep:c-kzg", "dep:once_cell"]
kzg-sidecar = ["sha2"]
serde = ["dep:alloy-serde", "dep:serde", "alloy-primitives/serde", "c-kzg?/serde"]
sha2 = ["dep:sha2"]
ssz = ["std", "dep:ethereum_ssz", "dep:ethereum_ssz_derive", "alloy-primitives/ssz"]
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]
all = "warn"
missing-const-for-fn = "warn"
option-if-let-else = "warn"
redundant-clone = "warn"
use-self = "warn"

[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
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.76"
version = "0.1.5"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]