utils/Cargo.toml (26 lines of code) (raw):
[package]
name = "utils"
version = "0.14.5"
edition = "2021"
[lib]
name = "utils"
path = "src/lib.rs"
[dependencies]
merklehash = { path = "../merklehash" }
async-trait = { workspace = true }
bytes = { workspace = true }
ctor = { workspace = true }
futures = { workspace = true }
lazy_static = { workspace = true }
parking_lot = { workspace = true }
pin-project = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["time", "rt", "macros"] }
tracing = { workspace = true }
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
tempfile = { workspace = true }
xet_threadpool = { path = "../xet_threadpool" }
[target.'cfg(target_family = "wasm")'.dependencies]
web-time = { workspace = true }
[features]
strict = []