mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 17:51:42 +00:00
* feat(linux): add Tauri desktop companion app and openclaw dashboard --json * test(dashboard): assemble fake token fixture to satisfy secret scanners * test(dashboard): avoid secret-scanner-shaped mock factory line * fix(linux): actionable error when installed CLI predates dashboard --json * docs: regenerate docs map for linux platform heading change
19 lines
418 B
TOML
19 lines
418 B
TOML
[package]
|
|
name = "openclaw-desktop-linux"
|
|
version = "0.1.0"
|
|
description = "OpenClaw desktop companion for Linux"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[[bin]]
|
|
name = "openclaw-desktop"
|
|
path = "src/main.rs"
|
|
|
|
[build-dependencies]
|
|
tauri-build = "2.6.3"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.150"
|
|
tauri = { version = "2.11.5", features = ["image-png", "tray-icon"] }
|