mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-04 09:46:43 +00:00
29 lines
874 B
TOML
29 lines
874 B
TOML
[package]
|
|
name = "macos-task-manager"
|
|
version = "1.0.9"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "2", features = [] }
|
|
sysinfo = "0.29.0"
|
|
tauri-plugin-shell = "2"
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|
|
|
|
[profile.release]
|
|
panic = "abort" # Strip expensive panic clean-up logic
|
|
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
|
|
lto = "fat" # More aggressive link-time optimization
|
|
opt-level = 3 # Optimize for maximum performance
|
|
strip = true # Remove debug symbols
|
|
incremental = false # Disable incremental compilation
|