-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 958 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 958 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
36
37
38
39
40
41
[package]
name = "csm"
version = "1.1.1"
edition = "2024"
[lints.clippy]
all = "deny"
[features]
default = ["__test_bash"] # Don't assume devs have other shells installed
__test_bash = []
__test_fish = []
__test_powershell = []
__test_zsh = []
[dependencies]
bzip2 = "0.6.1"
clap = { version = "4.5.50", features = ["derive", "wrap_help"] }
clap_complete = "4.5.60"
dirs = "6.0.0"
env_logger = "0.11.8"
flate2 = "1.1.5"
log = "0.4.28"
reqwest = { version = "0.13.1", default-features = false, features = ["http2", "charset", "system-proxy", "blocking", "rustls"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
serde_yaml_ng = "0.10.0"
sysinfo = "0.37.2"
tar = "0.4.44"
[target.'cfg(windows)'.dependencies]
windows-registry = "0.6.1"
[dev-dependencies]
assert_cmd = "2.0"
clap_builder = "4.5.51"
predicates = { version = "3.0", features = ["regex"] }
regex = "1.12.2"
temp-env = "0.3.6"
tempfile = "3.0"
which = "8.0.0"