alloy-eip2930 0.1.0

Implementation of EIP-2930 type definitions
Documentation
[dependencies.alloy-primitives]
default-features = false
features = ["rlp"]
version = "0.8.0"

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

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

[dependencies.rand]
optional = true
version = "0.8"

[dependencies.serde]
default-features = false
features = ["derive", "alloc"]
optional = true
version = "1.0"

[dev-dependencies.serde_json]
default-features = false
features = ["alloc"]
version = "1.0"

[features]
arbitrary = ["std", "dep:arbitrary", "dep:rand", "alloy-primitives/arbitrary"]
default = ["std"]
serde = ["dep:serde", "alloy-primitives/serde"]
std = ["alloy-primitives/std", "alloy-rlp/std", "serde?/std"]

[lib]
name = "alloy_eip2930"
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
autotests = false
build = false
description = "Implementation of EIP-2930 type definitions"
edition = "2021"
homepage = "https://github.com/alloy-rs/eips"
license = "MIT OR Apache-2.0"
name = "alloy-eip2930"
readme = false
repository = "https://github.com/alloy-rs/eips"
rust-version = "1.76"
version = "0.1.0"

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