IPass-GUI/src-tauri/Cargo.toml
2023-03-24 18:37:22 +01:00

33 lines
1.1 KiB
TOML

[package]
name = "ipass-gui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.2", features = [] }
[dependencies]
serde_json = "1.0.94"
serde = { version = "1.0.158", features = ["derive"] }
tauri = { version = "1.2.4", features = ["dialog-confirm"] }
ip_lib = { path = "../library/" }
rand="0.8.5"
open="4.0.1"
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
[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