mirror of
https://github.com/002Hub/IPass.git
synced 2025-04-19 13:51:21 +02:00
17 lines
511 B
TOML
17 lines
511 B
TOML
[package]
|
|
name = "ipass"
|
|
version = "0.4.1"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rpassword = "7.2"
|
|
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 |