Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
P0 KernelClient 功能断裂修复: - Skill CUD: registry.rs create/update/delete + serialize_skill_md + kernel proxy - Workflow CUD: pipeline_commands.rs create/update/delete + serde_yaml依赖 - Agent更新: registry update方法 + AgentConfigUpdated事件 + agent_update命令 - Hand流式事件: HandStart/HandEnd变体替换ToolStart/ToolEnd - 后端验证: hand_get/hand_run_status/hand_run_list确认实现完整 - Approval闭环: respond_to_approval后台spawn+5分钟超时轮询 P2/P3 质量改进: - Browser WebDriver: TCP探测ChromeDriver/GeckoDriver/Edge端口替换硬编码true - api-fallbacks: 移除假技能和16个捏造安全层,替换为真实能力映射 - dead_code清理: 移除5个模块级#![allow(dead_code)],删除3个真正死方法, 删除未注册的compactor_compact_llm命令,warnings从8降到3 - 所有变更通过cargo check + tsc --noEmit验证
83 lines
2.1 KiB
TOML
83 lines
2.1 KiB
TOML
[package]
|
|
name = "desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "ZCLAW Desktop Application"
|
|
authors = ["ZCLAW Team"]
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "desktop_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[features]
|
|
default = []
|
|
# Multi-agent orchestration (A2A protocol, Director, agent delegation)
|
|
# Disabled by default — enable when multi-agent UI is ready.
|
|
multi-agent = ["zclaw-kernel/multi-agent"]
|
|
dev-server = ["dep:axum", "dep:tower-http"]
|
|
|
|
[dependencies]
|
|
# ZCLAW crates
|
|
zclaw-types = { workspace = true }
|
|
zclaw-memory = { workspace = true }
|
|
zclaw-runtime = { workspace = true }
|
|
zclaw-kernel = { workspace = true }
|
|
zclaw-skills = { workspace = true }
|
|
zclaw-hands = { workspace = true }
|
|
zclaw-pipeline = { workspace = true }
|
|
zclaw-growth = { workspace = true }
|
|
|
|
# Tauri
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = "0.9"
|
|
toml = "0.8"
|
|
|
|
# HTTP client
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls", "blocking"] }
|
|
|
|
# Utilities
|
|
chrono = { workspace = true }
|
|
regex = { workspace = true }
|
|
dirs = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
uuid = { workspace = true }
|
|
base64 = { workspace = true }
|
|
tracing = { workspace = true }
|
|
secrecy = { workspace = true }
|
|
|
|
# Browser automation (existing)
|
|
fantoccini = "0.21"
|
|
|
|
# Secure storage (OS keyring/keychain)
|
|
keyring = "3"
|
|
|
|
# Encryption
|
|
aes-gcm = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
# SQLite (keep for backward compatibility during migration)
|
|
sqlx = { workspace = true }
|
|
libsqlite3-sys = { workspace = true }
|
|
|
|
# Development server (optional, only for debug builds)
|
|
axum = { version = "0.7", optional = true }
|
|
tower-http = { version = "0.5", features = ["cors"], optional = true }
|