mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-11 18:10:41 +08:00
- 服务管理:动态扫描 LaunchAgents plist,不再硬编码 4 个服务 - 服务启停:检查 launchctl 执行结果,失败时返回 stderr - 配置保存:Gateway/模型配置保存后自动重载 Gateway 服务使配置生效 - 模型测试:新增 test_model 命令,向 provider 发送 chat completion 验证连通性 - 新增 reqwest 依赖用于 HTTP 请求
22 lines
547 B
TOML
22 lines
547 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 }
|