- Add CompactBoundaryDivider component for compact_boundary system messages - Fix readability overlay: v-if removes element entirely at 0% opacity - Add approval page and window composable - Add PiP window support and loading screen - Tauri: add window management commands and capabilities - Disable Ctrl+1..5 shortcuts in Tauri (handled by global shortcuts)
25 lines
598 B
TOML
25 lines
598 B
TOML
[package]
|
|
name = "agent-ui"
|
|
version = "0.1.0"
|
|
description = "Agent UI - Desktop & Mobile App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "agent_ui_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
tauri-plugin-http = "2"
|
|
tauri-plugin-store = "2"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-global-shortcut = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|