-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (25 loc) · 909 Bytes
/
Cargo.toml
File metadata and controls
31 lines (25 loc) · 909 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
[package]
name = "tinyinstallj"
# We use a rolling release, just leave this version at <branch version>.0.0
version = "2.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.1.0"
nix = "0.23.1"
dirs = "4.0.0"
webbrowser = "0.5.5"
platform-dirs = "0.3.0"
[target.'cfg(target_family = "windows")'.dependencies]
winreg = "0.7"
[target.'cfg(target_family = "unix")'.dependencies]
isatty = "0.1.9"
[build-dependencies]
# winres = "0.1.12"
[profile.release]
# strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true # Enable link time optimization
# These two reduce executable size by about 1.5BMB but it's not really worth it for the slower build time
# codegen-units = 1 # Reduce parallel code generation units
# panic = "abort"