mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-06-28 03:01:54 +08:00
- 新增聊天页面(WebSocket 实时通信、会话管理、Markdown 渲染) - 新增 Agent 管理页面(CRUD、备份、工作区配置、模型选择) - 新增设备认证模块(Ed25519 签名) - 模型排序固化到配置文件(拖拽排序 + 下拉排序均写入底层数据) - 记忆文件页面支持 Agent 切换 - Gateway 配置页重构为选项卡片布局 - 页面路由加载动画 - 批量测试支持终止、实时刷新卡片 - 服务管理备份说明文案 - Modal 组件支持 readonly 字段 - 脱敏 mock 数据中的内部地址
26 lines
650 B
TOML
26 lines
650 B
TOML
[package]
|
|
name = "clawpanel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "clawpanel_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-shell = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
dirs = "6"
|
|
chrono = "0.4"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
sha2 = "0.10"
|
|
rand = "0.8"
|
|
base64 = "0.22"
|