[package]
edition = "2024"
rust-version = "1.90"
name = "eth-valkyoth-verify"
version = "0.21.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std Ethereum verification boundaries."
homepage = "https://github.com/valkyoth/eth"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/valkyoth/eth"
[features]
default = []
json = [
"std",
"dep:serde",
"dep:serde_json",
]
secp256k1-k256 = ["dep:k256"]
std = [
"eth-valkyoth-hash/std",
"eth-valkyoth-primitives/std",
"eth-valkyoth-protocol/std",
]
[lib]
name = "eth_valkyoth_verify"
path = "src/lib.rs"
[dependencies.eth-valkyoth-codec]
version = "0.19.0"
[dependencies.eth-valkyoth-hash]
version = "0.11.2"
[dependencies.eth-valkyoth-primitives]
version = "0.11.2"
[dependencies.eth-valkyoth-protocol]
version = "0.25.2"
[dependencies.k256]
version = "0.13.4"
features = ["ecdsa"]
optional = true
default-features = false
[dependencies.serde]
version = "1.0.228"
optional = true
[dependencies.serde_json]
version = "1.0.150"
optional = true
[dev-dependencies.eth-valkyoth-hash]
version = "0.11.2"
features = ["tiny-keccak"]
[dev-dependencies.k256]
version = "0.13.4"
features = ["ecdsa"]
default-features = false
[lints.clippy]
arithmetic_side_effects = "forbid"
cast_possible_truncation = "deny"
cast_sign_loss = "deny"
expect_used = "forbid"
indexing_slicing = "forbid"
panic = "forbid"
undocumented_unsafe_blocks = "forbid"
unwrap_used = "forbid"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "forbid"
unused_must_use = "deny"