[dependencies.maili-genesis]
default-features = false
optional = true
version = "0.2.2"
[dependencies.maili-protocol]
default-features = false
optional = true
version = "0.2.2"
[dependencies.maili-registry]
default-features = false
optional = true
version = "0.2.2"
[dependencies.maili-rpc]
default-features = false
optional = true
version = "0.2.2"
[features]
arbitrary = ["maili-protocol?/arbitrary", "maili-genesis?/arbitrary"]
default = ["std", "serde"]
full = ["protocol", "registry", "rpc", "genesis"]
genesis = ["dep:maili-genesis"]
jsonrpsee = ["maili-rpc?/jsonrpsee"]
protocol = ["dep:maili-protocol"]
registry = ["dep:maili-registry"]
rpc = ["dep:maili-rpc"]
serde = ["maili-protocol?/serde", "maili-genesis?/serde", "maili-rpc?/serde"]
std = ["maili-protocol?/std", "maili-registry?/std", "maili-genesis?/std", "maili-rpc?/std"]
[lib]
name = "maili"
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 = "Connect applications to the OP Stack"
edition = "2021"
exclude = ["benches/", "tests/"]
homepage = "https://github.com/op-rs/maili"
license = "MIT OR Apache-2.0"
name = "maili"
readme = "README.md"
repository = "https://github.com/op-rs/maili"
rust-version = "1.81"
version = "0.2.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]