Create src-tauri/ with tauri.conf.json (frameless transparent window, 1200x800 default, system tray), Cargo.toml with tauri v2 dependencies, and main.rs with tray icon click-to-show and global shortcut (Cmd+Shift+A) to toggle window visibility. Auto-updater plugin enabled. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
431 B
TOML
22 lines
431 B
TOML
[package]
|
|
name = "aiui"
|
|
version = "0.1.0"
|
|
description = "AIUI Desktop Application"
|
|
authors = ["AIUI"]
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [
|
|
"tray-icon",
|
|
"global-shortcut",
|
|
] }
|
|
tauri-plugin-updater = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|