-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
51 lines (43 loc) · 904 Bytes
/
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
[workspace]
members = [
"acb",
"cli",
"download",
"extract",
"manifest",
"utils",
]
resolver = "2"
[workspace.package]
authors = ["我可能很廢"]
edition = "2021"
license = "MIT"
repository = "https://github.com/nicks96432/mltd-asset-downloader"
[workspace.dependencies]
ctor = "0.2.9"
linked-hash-map = "0.5.6"
log = "0.4.22"
num_cpus = "1.16.0"
rayon = "1.10.0"
serde = "1.0.215"
[workspace.dependencies.clap]
default-features = false
version = "4.5.23"
[workspace.dependencies.env_logger]
default-features = false
features = ["humantime"]
version = "0.11.5"
[workspace.dependencies.indicatif]
default-features = false
features = ["rayon"]
version = "0.17.9"
[workspace.dependencies.ureq]
features = ["json", "native-certs"]
version = "2.12.1"
[profile.release]
codegen-units = 20
lto = "thin"
panic = "abort"
strip = true
[profile.dev]
split-debuginfo = "unpacked"