-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
49 lines (42 loc) · 894 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
[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.6"
linked-hash-map = "0.5.6"
log = "0.4.20"
num_cpus = "1.16.0"
rayon = "1.8.0"
serde = "1.0.195"
[workspace.dependencies.clap]
default-features = false
features = ["std", "help", "usage"]
version = "4.4.15"
[workspace.dependencies.env_logger]
default-features = false
features = ["humantime"]
version = "0.10.1"
[workspace.dependencies.indicatif]
default-features = false
features = ["rayon"]
version = "0.17.7"
[workspace.dependencies.ureq]
features = ["json", "native-certs"]
version = "2.9.1"
[profile.release]
codegen-units = 20
lto = "thin"
panic = "abort"
strip = true