ethrex-blockchain 17.0.0

Block validation, execution, fork choice, mempool, and payload building for the ethrex client
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 = "2024"
name = "ethrex-blockchain"
version = "17.0.0"
authors = ["LambdaClass"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Block validation, execution, fork choice, mempool, and payload building for the ethrex client"
documentation = "https://docs.ethrex.xyz"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/lambdaclass/ethrex"
resolver = "2"

[features]
c-kzg = [
    "ethrex-common/c-kzg",
    "ethrex-vm/c-kzg",
]
default = ["secp256k1"]
eip-8025 = ["ethrex-common/eip-8025"]
metrics = ["ethrex-metrics/transactions"]
rayon = ["ethrex-vm/rayon"]
secp256k1 = [
    "ethrex-common/secp256k1",
    "ethrex-vm/secp256k1",
    "rayon",
]

[lib]
name = "ethrex_blockchain"
path = "blockchain.rs"

[dependencies.bytes]
version = "1.6.0"
features = ["serde"]

[dependencies.crossbeam]
version = "0.8.4"

[dependencies.ethrex-common]
version = "17.0.0"
default-features = false

[dependencies.ethrex-crypto]
version = "17.0.0"
default-features = false

[dependencies.ethrex-metrics]
version = "17.0.0"
default-features = false

[dependencies.ethrex-rlp]
version = "17.0.0"

[dependencies.ethrex-storage]
version = "17.0.0"

[dependencies.ethrex-trie]
version = "17.0.0"

[dependencies.ethrex-vm]
version = "17.0.0"
default-features = false

[dependencies.rayon]
version = "1.10.0"

[dependencies.reqwest]
version = "0.12.7"
features = [
    "socks",
    "json",
]
optional = true

[dependencies.rustc-hash]
version = "2.1.1"

[dependencies.serde]
version = "1.0.203"
features = [
    "derive",
    "rc",
]
optional = true

[dependencies.serde_json]
version = "1.0.117"
optional = true

[dependencies.spawned-concurrency]
version = "0.5.0"
optional = true

[dependencies.thiserror]
version = "2.0.9"

[dependencies.tokio]
version = "1.41.1"
features = [
    "time",
    "rt",
    "sync",
    "macros",
]
default-features = false

[dependencies.tokio-util]
version = "0.7.15"
features = ["rt"]

[dependencies.tracing]
version = "0.1"
features = ["log"]

[dependencies.url]
version = "2.5.4"
features = ["serde"]
optional = true

[dev-dependencies.tokio]
version = "1.41.1"
features = ["full"]
default-features = false

[lints.clippy]
redundant_clone = "warn"
unwrap_used = "deny"