mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-21 08:10:09 +08:00
- 新增 standalone 安装链路(自带 Node.js,零依赖,无需 npm) - 安装方式选择器:自动/CDN加速/GitHub/npm 四选一 - 动态查询 latest.json 获取最新版本,不怕旧资源被删除 - GitHub 模式:从 GitHub Releases 下载(CDN 不可用时备选) - CherryStudio openclaw.exe 干扰过滤 - 默认源改为汉化优化版 - 日志隐藏 R2 下载地址(安全) - 卸载兼容:standalone + npm 双清理 - 版本检测覆盖所有 standalone 安装路径 - README + 官网添加独立安装包说明 - macOS npm 权限问题通过 standalone 自动解决
35 lines
1015 B
TOML
35 lines
1015 B
TOML
[package]
|
|
name = "clawpanel"
|
|
version = "0.9.4"
|
|
edition = "2021"
|
|
description = "ClawPanel - OpenClaw 可视化管理面板"
|
|
authors = ["qingchencloud"]
|
|
repository = "https://github.com/qingchencloud/clawpanel"
|
|
homepage = "https://github.com/qingchencloud/clawpanel"
|
|
license = "AGPL-3.0"
|
|
|
|
[lib]
|
|
name = "clawpanel_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon", "image-png"] }
|
|
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", "stream"], default-features = false }
|
|
futures-util = "0.3"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
sha2 = "0.10"
|
|
rand = "0.8"
|
|
base64 = "0.22"
|
|
urlencoding = "2"
|
|
regex = "1"
|
|
tokio = { version = "1", features = ["process", "time"] }
|