-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
55 lines (48 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "cas_object"
version = "0.1.0"
edition = "2024"
[[bench]]
name = "compression_bench"
harness = false
bench = true
[[bench]]
name = "bg_split_regroup_bench"
harness = false
bench = true
[dependencies]
xet_runtime = { path = "../xet_runtime" }
deduplication = { path = "../deduplication" }
mdb_shard = { path = "../mdb_shard" }
merklehash = { path = "../merklehash" }
utils = { path = "../utils" }
anyhow = { workspace = true }
blake3 = { workspace = true }
bytes = { workspace = true }
clap = { workspace = true }
countio = { workspace = true }
csv = { workspace = true }
futures = { workspace = true }
half = { workspace = true }
lz4_flex = { workspace = true }
more-asserts = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
strum = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["time", "rt", "macros", "io-util"] }
tracing = { workspace = true }
[target.'cfg(not(target_family = "wasm"))'.dependencies]
tokio = { workspace = true, features = [
"time",
"rt",
"macros",
"io-util",
"rt-multi-thread",
] }
[[bin]]
path = "src/byte_grouping/compression_stats/collect_compression_stats.rs"
name = "collect_compression_stats"
[[bin]]
path = "src/byte_grouping/bg4_prediction_benchmark.rs"
name = "bg4_prediction_benchmark"