-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
87 lines (82 loc) · 2.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "2"
members = [
"crates/bsa-cli",
"crates/hoolamike",
"crates/tokio-cached-future",
"crates/wrapped-7zip",
]
default-members = ["crates/hoolamike"]
[workspace.package]
version = "0.11.0"
license = "MIT"
repository = "https://github.com/Niedzwiedzw/hoolamike"
categories = ["modding"]
readme = "README.md"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
# internal
wrapped-7zip.path = "crates/wrapped-7zip"
tokio-cached-future.path = "crates/tokio-cached-future"
# external
anyhow = "1.0.93"
base64 = "0.22.1"
binrw = "0.14.1"
bon = "3.1.1"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.21", features = ["derive", "cargo", "env", "string"] }
# compress-tools = "0.15.1"
compress-tools.git = "https://github.com/Niedzwiedzw/compress-tools-rs"
console = { version = "0.15.8", features = ["windows-console-colors"] }
console-subscriber = "0.4.1"
derivative = "2.2.0"
derive_more = { version = "1.0.0", features = ["full"] }
enum-kinds = "0.5.1"
enum_dispatch = "0.3.13"
extension-traits = "2.0.0"
flate2 = "1.0.35"
fs2 = "0.4.3"
futures = "0.3.31"
futures-util = "0.3.31"
hex = "0.4.3"
indexmap = { version = "2.7.0", features = ["serde"] }
indicatif = { version = "0.17.9", features = ["tokio", "improved_unicode"] }
iter-read = "1.1.0"
itertools = "0.13.0"
nonempty = { version = "0.10.0", features = ["serde", "serialize"] }
num = "0.4.3"
num_cpus = "1.16.0"
omnom = "3.0.0"
once_cell = "1.20.2"
parking_lot = { version = "0.12.3", features = ["arc_lock", "nightly"] }
regex = "1.11.1"
reqwest = { version = "0.12.9", default-features = false, features = [
"stream",
"rustls-tls",
"charset",
"http2",
"macos-system-configuration",
] }
scraper = "0.21.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_urlencoded = "0.7.1"
serde_yaml = "0.9.34"
sevenz-rust = "0.6.1"
tabled = "0.17.0"
tap = "1.0.1"
tempfile = "3.14.0"
test-log = { version = "0.2.16", default-features = false, features = [
"trace",
] }
tokio = { version = "1.41.1", features = ["full", "tracing"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
transpare = { git = "https://github.com/Niedzwiedzw/transpare", version = "0.2.0" }
url = { version = "2.5.4", features = ["serde"] }
uuid = { version = "1.11.0", features = ["serde", "v4"] }
xxhash-rust = { version = "0.8.12", features = ["xxh64", "std"] }
zip = { version = "2.2.1", features = ["lzma-rs", "flate2"] }
[patch.crates-io]
indicatif = { git = "https://github.com/Niedzwiedzw/indicatif", branch = "main" }