- 响应式项目首页 (Landing, 含 R2 APK 下载) + 路由 /home 调整 - OTA 升级: tauri-plugin-hotswap (lib.rs/main.rs 拆分, 客户端热替换) - OTA 服务端 (check/bundle/manifest-web) + build-ota/genkey/upload 脚本 - 密钥/凭据统一存配置中心 (signing + ota + cloudflare 分组) - Android CI (android-* 分支) + OTA CI (手动触发), 产物上传 R2 - 修复 tsc/构建阻塞问题
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[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"]
|