Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[package]
|
|
name = "openfang-desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Native desktop application for the OpenFang Agent OS (Tauri 2.0)"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
openfang-kernel = { path = "../openfang-kernel" }
|
|
openfang-api = { path = "../openfang-api" }
|
|
openfang-types = { path = "../openfang-types" }
|
|
tokio = { workspace = true }
|
|
axum = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-single-instance = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-global-shortcut = "2"
|
|
tauri-plugin-autostart = "2"
|
|
tauri-plugin-updater = "2"
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|
|
open = "5"
|
|
|
|
[features]
|
|
# Tauri uses custom-protocol in production builds
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
|
|
[[bin]]
|
|
name = "openfang-desktop"
|
|
path = "src/main.rs"
|