forked from allenai/decon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (49 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
59 lines (49 loc) · 1.22 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
56
57
58
59
[workspace]
resolver = "2"
members = [
"crates/decon-core",
"crates/decon-py",
"crates/decon-cli",
]
[workspace.package]
version = "0.3.0"
edition = "2024"
rust-version = "1.88.0"
license = "Apache-2.0"
repository = "https://github.com/allenai/decon"
homepage = "https://github.com/allenai/decon"
readme = "README.md"
keywords = ["llm", "contamination", "detection", "training", "evaluation"]
[workspace.dependencies]
# Core dependencies
anyhow = "1.0"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.97"
serde_yaml = "0.9.34"
# Compression
zstd = "0.13.1"
flate2 = "1.0"
bzip2 = "0.4"
xz2 = "0.1"
# Tokenization and text processing
tiktoken-rs = "0.5.8"
regex = "1.10.4"
unicode-segmentation = "1.12.0"
# Concurrency
dashmap = { version = "5.5.3", features = ["rayon"] }
rayon = "1.10.0"
thread_local = "1.1"
# Async and server
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
axum = "0.7"
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
dirs = "5.0"
mj_io = "0.1.3"
indicatif = "0.17.8"
# CLI
clap = { version = "4.1.11", features = ["derive"] }
# Python bindings
pyo3 = { version = "0.27", features = ["extension-module"] }
# Dev dependencies
tempfile = "3.8"