-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (48 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
63 lines (48 loc) · 1.18 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
[package]
name = "iii-cli"
version = "0.2.5"
edition = "2021"
description = "Unified CLI dispatcher for iii-engine tools"
license = "Apache-2.0"
[[bin]]
name = "iii-cli"
path = "src/main.rs"
[dependencies]
# CLI
clap = { version = "4", features = ["derive"] }
colored = "2"
# Async -- reduced feature set
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "process", "io-std", "fs"] }
# HTTP -- reqwest respects HTTP_PROXY / HTTPS_PROXY / NO_PROXY automatically
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
# Progress
indicatif = "0.17"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
anyhow = "1"
thiserror = "2"
# Version comparison
semver = { version = "1", features = ["serde"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Archive extraction
flate2 = "1"
tar = "0.4"
zip = "2"
# Platform directories
dirs = "6"
# SHA256 verification
sha2 = "0.10"
# Futures for streaming downloads
futures-util = "0.3"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = "z"