[package] name = "wardrobe" version = "0.1.0" edition = "2021" description = "Wardrobe - AI-powered clothing management system" # 库目标: 桌面 + Android (cdylib) 都需要 [lib] name = "wardrobe_lib" crate-type = ["staticlib", "cdylib", "rlib"] [dependencies] tauri = { version = "2", features = ["tray-icon"] } tauri-plugin-shell = "2" # 前端 OTA 升级 (运行时覆盖 tauri://localhost 资源; 替换 Assets provider) tauri-plugin-hotswap = "0.0.4" serde = { version = "1", features = ["derive"] } serde_json = "1" duckdb = { version = "0.10", features = ["bundled"] } tokio = { version = "1", features = ["full"] } uuid = { version = "1", features = ["v4"] } chrono = { version = "0.4", features = ["serde"] } sha2 = "0.10" hex = "0.4" ctrlc = "3" log = "0.4" env_logger = "0.11" [target."cfg(target_os = \"android\")".dependencies] tauri = { version = "2", features = [] } [build-dependencies] tauri-build = { version = "2", features = [] } [features] default = ["custom-protocol"] custom-protocol = ["tauri/custom-protocol"]