新功能: - 集成Google Gemini API进行视频智能分类 - 实现任务队列系统支持批量处理 - 添加实时进度显示和状态管理 - 自动文件整理到分类文件夹 架构改进: - 遵循Tauri开发规范的分层架构设计 - 完整的数据模型和仓库层实现 - 异步任务处理和错误处理机制 - 类型安全的前后端通信接口 用户界面: - MaterialCard组件添加AI分类按钮 - VideoClassificationProgress进度显示组件 - 优美的动画效果和响应式设计 - 符合前端开发规范的UI/UX优化 数据库扩展: - 新增video_classification_records表 - 新增video_classification_tasks表 - 完整的索引优化和外键约束 技术实现: - Rust后端服务层完整实现 - React/TypeScript前端状态管理 - Zustand状态存储和API封装 - 完善的错误处理和用户提示 文档: - 完整的功能文档和API说明 - 架构设计和使用流程说明 - 开发规范遵循情况说明 Closes #AI视频分类功能开发
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
TOML
[package]
|
|
name = "mixvideo-desktop"
|
|
version = "0.1.6"
|
|
description = "MixVideo Desktop Application"
|
|
authors = ["imeepos <imeepos@outlook.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "mixvideo_desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-dialog = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.31", features = ["bundled", "chrono"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
tokio = { version = "1.0", features = ["full", "sync"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
dirs = "5.0"
|
|
md5 = "0.7"
|
|
lazy_static = "1.4"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "chrono"] }
|
|
tracing-appender = "0.2"
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|
|
tokio-test = "0.4"
|
|
|