-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 790 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 790 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
[package]
name = "rsdk"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4", features = ["derive"] }
directories = "6"
log = "0.4"
env_logger = "0.11"
symlink = "0.1"
eyre = "0.6"
color-eyre = "0.6"
#anyhow = "1.0"
indicatif = "0.17"
sha = "1"
md5 = "0.7"
reqwest = { version = "0.12", features = ["blocking", "gzip"] }
zip = "2"
tar = "0.4"
flate2 = "1"
tempfile = "3"
serde_ini = "0.2"
serde_derive = "1"
serde = { version = "1.0.213", features = ["derive"] }
crossterm = "0.28.1"
ratatui = { version = "0.29", features = ["all-widgets"] }
[profile.release]
opt-level = "z" # Optimize for binary size
lto = "fat" # Link-time optimization across all crates
codegen-units = 1 # Single codegen unit for better optimizations