mdb_shard/Cargo.toml (34 lines of code) (raw):
[package]
name = "mdb_shard"
version = "0.14.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
merklehash = { path = "../merklehash" }
utils = { path = "../utils" }
anyhow = { workspace = true }
async-trait = { workspace = true }
blake3 = { workspace = true }
bytes = { workspace = true }
clap = { workspace = true }
futures = { workspace = true }
futures-util = { workspace = true }
itertools = { workspace = true }
lazy_static = { workspace = true }
rand = { workspace = true, features = ["small_rng"] }
regex = { workspace = true }
serde = { workspace = true }
static_assertions = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
heapify = { workspace = true }
[target.'cfg(target_family = "wasm")'.dependencies]
uuid = { workspace = true, features = ["v4", "js"] }
[target.'cfg(not(target_family = "wasm"))'.dependencies]
uuid = { workspace = true, features = ["v4"] }
tokio = { workspace = true, features = ["rt-multi-thread"] }
[[bin]]
name = "shard_benchmark"
path = "src/shard_benchmark.rs"