forked from K0lb3s-Datamines/Blue-Archive---Asset-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 926 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 926 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
35
[package]
name = "baad"
version = "2.9.2"
edition = "2024"
[lib]
name = "baad"
path = "src/lib.rs"
[[bin]]
name = "baad"
path = "src/main.rs"
[dependencies]
reqwest = { version = "0.12.23", features = ["json"] }
serde_json = { version = "1.0.145", features = ["preserve_order"] }
serde = { version = "1.0.226", features = ["derive"] }
tokio = { version = "1.47.1", features = ["full"] }
thiserror = "2.0.16"
walkdir = "2.5.0"
eyre = "0.6.12"
zip = "5.1.1"
base64 = "0.22.1"
lazy-regex = "3.4.1"
glob = "0.3.3"
nucleo = "0.5.0"
url = "2.5.7"
clap = { version = "4.5.48", features = ["derive"] }
hashbrown = "0.16.0"
rayon = "1.11.0"
memchr = "2.7.6"
bacy = { git = "https://github.com/Deathemonic/BA-CY", tag = "v2.6.1" }
trauma = { git = "https://github.com/RZinth/trauma", version = "3.3.1", features = ["rustls"] } # Using a custom trauma
baad-core = { git = "https://github.com/RZinth/BA-AD-Core", version = "2.7.1" }