[package] name = "hound-gui" description = "Hound Antivirus desktop app (Tauri 2)" version = "0.1.0" edition = "2021" license = "MIT" repository = "https://git.joelovestech.com/Hound/Antivirus" # Standalone crate: the GUI has its own workspace (different dep set from # the CLI/daemon) and is built via `cargo tauri build`, not the root build. [workspace] [dependencies] hound-api = { path = "../../crates/hound-api" } tauri = { version = "2", features = ["tray-icon", "image-png"] } tauri-plugin-dialog = "2" tauri-plugin-notification = "2" tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" anyhow = "1" [build-dependencies] tauri-build = "2" [profile.release] strip = true