17 lines
514 B
TOML
17 lines
514 B
TOML
[package]
|
|
name = "ipass-gui"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
winit = "0.27.5"
|
|
ip_lib = { path = "library/" }
|
|
|
|
[profile.release]
|
|
opt-level = 'z' # Optimize for size
|
|
lto = true # Enable link-time optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
panic = 'abort' # Abort on panic
|
|
# strip = true # Strip symbols from binary; remove pdb |