-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (77 loc) · 2.43 KB
/
Cargo.toml
File metadata and controls
82 lines (77 loc) · 2.43 KB
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
[workspace]
resolver = "2"
members = ["crates/*", "xtask", "xtask/x"]
default-members = ["crates/maa-cli"]
[workspace.package]
edition = "2024"
rust-version = "1.88"
homepage = "https://github.com/MaaAssistantArknights/maa-cli"
repository = "https://github.com/MaaAssistantArknights/maa-cli"
license = "AGPL-3.0-only"
[workspace.dependencies]
anyhow = "1"
base16ct = "1.0.0"
chrono = { version = "0.4.31", default-features = false }
clap = { version = "4.4", features = ["unstable-markdown"] }
clap_complete = "4.4"
clap_mangen = "0.3"
color-print = "0.3.6"
constcat = "0.6.0"
digest = "0.11"
digest-io = "0.1.0"
directories = "6"
dunce = "1.0.4"
env_logger = { version = "0.11", default-features = false }
flate2 = { version = "1", default-features = false, features = ["rust_backend"] }
git2 = "0.20"
indexmap = "2.13.1"
indicatif = "0.18"
libloading = "0.9"
log = "0.4.20"
maa-core = { path = "crates/maa-core", version = "0.1", default-features = false }
maa-dirs = { path = "crates/maa-dirs", version = "0.3" }
maa-ffi-string = { path = "crates/maa-ffi-string", version = "0.1" }
maa-ffi-types = { path = "crates/maa-ffi-types", version = "1" }
maa-installer = { path = "crates/maa-installer", version = "0.2" }
maa-str-ext = { path = "crates/maa-str-ext", version = "0.1" }
maa-sys = { path = "crates/maa-sys", version = "0.10", default-features = false }
maa-types = { path = "crates/maa-types", version = "0.3" }
maa-value = { path = "crates/maa-value", version = "0.2" }
maa-value-macro = { path = "crates/maa-value-macro", version = "0.1" }
maa-version = { path = "crates/maa-version", version = "0.1" }
prettytable = { version = "0.10.0", default-features = false }
proc-macro2 = "1"
quote = "1"
rayon = "1.11.0"
regex = "1.10.2"
schemars = "1.0"
self-replace = "1.5.0"
semver = { version = "1.0.19", features = ["serde"] }
serde = "1"
serde_json = "1"
serde_test = "1"
serde_yaml = "0.9.25"
sha2 = "0.11"
signal-hook = "0.4"
syn = "2"
tar = "0.4.45"
tempfile = "3.14.0"
thiserror = "2"
tiny_http = "0.12"
toml = "1"
ureq = { version = "3" }
windows-result = "0.4.0"
windows-strings = "0.5.0"
windows-sys = "0.61.0"
zip = { version = "8", default-features = false, features = ["deflate-flate2"] }
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
"cfg(coverage,coverage_nightly)",
] }
[workspace.metadata.typos.files]
extend-exclude = ["CHANGELOG.md"]
[profile.release-lto]
inherits = "release"
strip = "symbols"
lto = "fat"
codegen-units = 1