30 lines
857 B
TOML
30 lines
857 B
TOML
[package]
|
|
name = "hound-gui"
|
|
description = "Hound Antivirus desktop app (Tauri 2)"
|
|
version = "0.1.12"
|
|
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"] }
|
|
libc = "0.2"
|
|
sha2 = "0.10"
|
|
ureq = { version = "2", default-features = false, features = ["tls", "gzip"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[profile.release]
|
|
strip = true
|