revm-database 12.0.0

Revm Database implementations
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.88.0"
name = "revm-database"
version = "12.0.0"
authors = ["Dragan Rakita <dragan0rakita@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Revm Database implementations"
readme = "README.md"
keywords = [
    "revm",
    "evm",
    "ethereum",
    "blockchain",
    "no_std",
]
license = "MIT"
repository = "https://github.com/bluealloy/revm"

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

[features]
alloydb = [
    "std",
    "database-interface/asyncdb",
    "dep:tokio",
    "dep:alloy-provider",
    "dep:alloy-eips",
    "dep:alloy-transport",
]
default = ["std"]
map-foldhash = [
    "primitives/map-foldhash",
    "state/map-foldhash",
]
serde = [
    "dep:serde",
    "alloy-eips?/serde",
    "bytecode/serde",
    "database-interface/serde",
    "primitives/serde",
    "state/serde",
]
std = [
    "serde?/std",
    "alloy-eips?/std",
    "bytecode/std",
    "database-interface/std",
    "primitives/std",
    "state/std",
    "serde_json/std",
]

[lib]
name = "revm_database"
path = "src/lib.rs"

[dependencies.alloy-eips]
version = "1.4.2"
optional = true
default-features = false

[dependencies.alloy-provider]
version = "1.4.2"
optional = true
default-features = false

[dependencies.alloy-transport]
version = "1.4.2"
optional = true
default-features = false

[dependencies.bytecode]
version = "9.0.0"
default-features = false
package = "revm-bytecode"

[dependencies.database-interface]
version = "10.0.0"
default-features = false
package = "revm-database-interface"

[dependencies.primitives]
version = "22.1.0"
default-features = false
package = "revm-primitives"

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

[dependencies.state]
version = "10.0.0"
default-features = false
package = "revm-state"

[dependencies.tokio]
version = "1.47"
features = [
    "rt-multi-thread",
    "macros",
]
optional = true

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

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unused_must_use = "deny"

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1

[lints.rustdoc]
all = "warn"