[package] name = "CS工具箱" version = "0.0.1" description = "A Tauri App" authors = ["Purp1e"] license = "" repository = "" default-run = "CS工具箱" edition = "2021" rust-version = "1.66" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [build-dependencies] tauri-build = { version = "2.0.3", features = [] } [dependencies] serde_json = "1.0" serde = { version = "1.0.214", features = ["derive"] } tauri = { version = "2.1.0", features = [ "macos-private-api", "tray-icon" ] } window-vibrancy = "0.5.2" tauri-plugin-process = "2.0.1" tauri-plugin-fs = "2.0.3" tauri-plugin-dialog = "2" tauri-plugin-os = "2.0.1" tauri-plugin-clipboard-manager = "2.0.2" tauri-plugin-shell = "2.0.2" tauri-plugin-http = "2.0.3" tauri-plugin-notification = "2.0.1" tauri-plugin-valtio = "1.1.1" tauri-plugin-store = "2.1.0" [target.'cfg(windows)'.dependencies] # Windows Only winreg = "0.52.0" [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" ] [target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] tauri-plugin-global-shortcut = "2.0.1"