-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
42 lines (38 loc) · 1.08 KB
/
Cargo.toml
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
[package]
name = "retoc"
edition = "2021"
[workspace]
[profile.release]
debug = true
[dependencies]
aes = "0.8.4"
anyhow = "1.0.95"
base64 = "0.22.1"
bitflags = "2.6.0"
blake3 = "1.5.5"
byteorder = "1.5.0"
cityhasher = "0.1.0"
clap = { version = "4.5.26", features = ["derive"] }
flate2 = { version = "1.0.35", features = ["zlib"] }
fs-err = "3.0.0"
hex = "0.4.3"
indexmap = { version = "2.7.0", features = ["serde"] }
indicatif = "0.17.9"
itertools = "0.14.0"
key-mutex = "0.1.3"
lz4_flex = "0.11.3"
oodle_loader = { git = "https://github.com/trumank/repak.git", version = "0.2.2" }
pariter = "0.5.1"
rayon = "1.10.0"
repak = { git = "https://github.com/trumank/repak.git", version = "0.2.2", features = ["oodle"] }
ser-hex = { git = "https://github.com/trumank/ser-hex", version = "0.1.0" }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
serde_with = { version = "3.12.0", features = ["hex"] }
sha1 = "0.10.6"
strum = { version = "0.26.3", features = ["derive"] }
tracing = "0.1.41"
typed-path = "0.10.0"
zstd = "0.13.2"
[dev-dependencies]
pretty_assertions = "1.4.1"