merkledb/Cargo.toml (38 lines of code) (raw):
[package]
name = "merkledb"
version = "0.14.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
doctest = false
[dependencies]
merklehash = { path = "../merklehash" }
utils = { path = "../utils" }
async-trait = { workspace = true }
bincode = { workspace = true }
bitflags = { workspace = true }
blake3 = { workspace = true }
clap = { workspace = true }
gearhash = { workspace = true }
lazy_static = { workspace = true }
rand_chacha = { workspace = true }
rayon = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
walkdir = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
lazy_static = { workspace = true }
tokio = { workspace = true, features = ["full"] }
rand = { workspace = true }
[[bench]]
name = "rolling_hash_benchmark"
harness = false
[[bin]]
name = "testdedupe"
path = "src/bin/testdedupe.rs"
[features]
strict = []