[[bench]]
harness = false
name = "abi"
path = "benches/abi.rs"
[[bench]]
harness = false
name = "types"
path = "benches/types.rs"
[dependencies.alloy-json-abi]
default-features = false
version = "0.8.11"
[dependencies.alloy-primitives]
default-features = false
version = "0.8.11"
[dependencies.alloy-sol-type-parser]
default-features = false
version = "0.8.11"
[dependencies.alloy-sol-types]
default-features = false
version = "0.8.11"
[dependencies.arbitrary]
optional = true
version = "1.3"
[dependencies.derive_arbitrary]
optional = true
version = "1.3"
[dependencies.derive_more]
default-features = false
features = ["deref", "deref_mut", "from", "into", "into_iterator"]
optional = true
version = "1.0"
[dependencies.hex]
default-features = false
features = ["alloc"]
package = "const-hex"
version = "1.10"
[dependencies.itoa]
version = "1"
[dependencies.proptest]
optional = true
version = "1"
[dependencies.serde]
default-features = false
features = ["alloc"]
optional = true
version = "1.0"
[dependencies.serde_json]
default-features = false
features = ["alloc"]
optional = true
version = "1.0"
[dependencies.winnow]
default-features = false
features = ["alloc"]
version = "0.6"
[dev-dependencies.alloy-dyn-abi]
features = ["std"]
version = ">=0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.ethabi]
version = "18"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.serde_json]
default-features = false
features = ["alloc"]
version = "1.0"
[features]
arbitrary = ["std", "alloy-sol-types/arbitrary", "dep:arbitrary", "dep:derive_arbitrary", "dep:proptest"]
debug = ["std", "alloy-sol-type-parser/debug"]
default = ["std"]
eip712 = ["alloy-sol-types/eip712-serde", "dep:derive_more", "dep:serde", "dep:serde_json"]
std = ["alloy-json-abi/std", "alloy-sol-types/std", "alloy-sol-type-parser/std", "alloy-primitives/std", "hex/std", "serde?/std", "serde_json?/std"]
[lib]
name = "alloy_dyn_abi"
path = "src/lib.rs"
[lints.clippy]
dbg-macro = "warn"
manual-string-new = "warn"
missing-const-for-fn = "warn"
redundant-clone = "warn"
uninlined-format-args = "warn"
use-self = "warn"
[lints.rust]
missing-copy-implementations = "warn"
missing-debug-implementations = "warn"
missing-docs = "warn"
redundant-lifetimes = "warn"
rust-2018-idioms = "warn"
unnameable-types = "warn"
unreachable-pub = "warn"
unused-must-use = "warn"
[lints.rustdoc]
all = "warn"
[package]
authors = ["Alloy Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "encoding", "cryptography::cryptocurrencies"]
description = "Run-time ABI and EIP-712 implementations"
edition = "2021"
exclude = ["tests"]
homepage = "https://github.com/alloy-rs/core/tree/main/crates/dyn-abi"
keywords = ["ethereum", "abi", "encoding", "evm", "solidity"]
license = "MIT OR Apache-2.0"
name = "alloy-dyn-abi"
readme = "README.md"
repository = "https://github.com/alloy-rs/core"
rust-version = "1.79"
version = "0.8.11"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]