-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 688 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 688 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
[package]
name = "betterncm_installer"
version = "1.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "build.rs"
[build-dependencies]
winres = "0.1"
[dependencies]
druid = { git = "https://github.com/linebender/druid.git", features = [
"im",
"serde",
"raw-win-handle",
] }
scl-gui-widgets = { path = "./scl-gui-widgets" }
serde_json = "1.0.79"
winreg = "0.10.1"
anyhow = "*"
pelite = "0.10.0"
semver = "1.0.16"
dirs = "*"
tinyget = { version = "1.0", features = ["https"] }
rfd = "0.11.4"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"
debug = false
strip = true