-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 919 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 919 Bytes
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
[package]
name = "zip2zip_compression"
version = "0.3.4"
edition = "2024"
authors = ["Nathan Ranchin", "Saibo Geng"]
description = "A high-performance LZW compression library built for [zip2zip](https://arxiv.org/abs/2506.01084)."
readme = "README.md"
repository = "https://github.com/epfl-dlab/zip2zip-compression"
license-file = "LICENSE"
[lib]
name = "zip2zip_compression"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "zip2zip_compression_cli"
path = "src/main.rs"
[dependencies]
bumpalo = { version = "3.19.0", features = ["collections"] }
hashbrown = "0.15.4"
itertools = "0.14.0"
pyo3 = { version = "0.24.2", features = ["extension-module", "hashbrown", "py-clone"] }
rand = "0.9"
rayon = "1.10.0"
clap = { version = "4", features = ["derive"] }
log = "0.4"
env_logger = "0.11"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
[dev-dependencies]
hf-hub = "0.4.3"
tqdm = "0.8.0"