data/Cargo.toml (58 lines of code) (raw):

[package] name = "data" version = "0.14.5" edition = "2021" [lib] doctest = false [[bin]] name = "x" path = "src/bin/example.rs" [[bin]] name = "xtool" path = "src/bin/xtool.rs" [dependencies] cas_client = { path = "../cas_client" } cas_object = { path = "../cas_object" } cas_types = { path = "../cas_types" } merkledb = { path = "../merkledb" } merklehash = { path = "../merklehash" } mdb_shard = { path = "../mdb_shard" } parutils = { path = "../parutils" } error_printer = { path = "../error_printer" } deduplication = { path = "../deduplication" } progress_tracking = { path = "../progress_tracking" } utils = { path = "../utils" } xet_threadpool = { path = "../xet_threadpool" } anyhow = { workspace = true } async-trait = { workspace = true } bytes = { workspace = true } chrono = { workspace = true } clap = { workspace = true } dirs = { workspace = true } jsonwebtoken = { workspace = true } lazy_static = { workspace = true } more-asserts = { workspace = true } prometheus = { workspace = true } rand = { workspace = true } rand_chacha = { workspace = true } regex = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } tempfile = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["full"] } tracing = { workspace = true } ulid = { workspace = true } walkdir = { workspace = true } # Windows doesn't support assembly for compilation [target.'cfg(not(target_os = "windows"))'.dependencies] sha2 = { workspace = true, features = ["asm"] } [target.'cfg(target_os = "windows")'.dependencies] sha2 = { workspace = true } [dev-dependencies] serial_test = { workspace = true } tracing-test = { workspace = true } ctor = { workspace = true } [features] strict = [] expensive_tests = []