ubt 0.2.3

Unified Binary Tree implementation based on EIP-7864
Documentation
[[bench]]
harness = false
name = "incremental_vs_rebuild"
path = "benches/incremental_vs_rebuild.rs"

[[bench]]
harness = false
name = "stem_vs_tree"
path = "benches/stem_vs_tree.rs"

[[bin]]
name = "simulate"
path = "src/bin/simulate.rs"
required-features = ["simulate"]

[dependencies.alloy-primitives]
version = "1"

[dependencies.blake3]
version = "1.5"

[dependencies.hex]
version = "0.4"

[dependencies.num_cpus]
optional = true
version = "1.16"

[dependencies.rand]
optional = true
version = "0.8"

[dependencies.rayon]
optional = true
version = "1.10"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.num_cpus]
version = "1.16"

[dev-dependencies.proptest]
version = "1.4"

[dev-dependencies.rand]
version = "0.8"

[features]
default = ["parallel"]
parallel = ["dep:rayon"]
serde = ["dep:serde", "alloy-primitives/serde"]
simulate = ["dep:rand", "dep:num_cpus"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "data-structures"]
description = "Unified Binary Tree implementation based on EIP-7864"
edition = "2021"
keywords = ["ethereum", "eip-7864", "binary-tree", "state-tree"]
license = "MIT OR Apache-2.0"
name = "ubt"
readme = "README.md"
repository = "https://github.com/igor53627/ubt-rs"
version = "0.2.3"

[[test]]
name = "integration_export"
path = "tests/integration_export.rs"

[[test]]
name = "proptests"
path = "tests/proptests.rs"

[[test]]
name = "simulation_test"
path = "tests/simulation_test.rs"