ruvector/examples/rvf-desktop/Cargo.toml
rUv 265d6cb1b0 feat(rvf): add Causal Atlas dashboard, solver fixes, and desktop app
ADR-040 Causal Atlas implementation with full Three.js dashboard:
- Planet detection, life candidate scoring, Dyson sphere 3D views
- WASM solver with fixed acceptance test (evaluate-before-train,
  conservative Thompson sampling, non-contradictory noise injection)
- wry-based desktop app embedding the full dashboard (1.6 MB binary)
- WebSocket live updates, docs view, download page, status dashboard
- 10/10 seed acceptance pass rate (was ~40% before fixes)

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-02-20 18:01:09 +00:00

25 lines
550 B
TOML

[package]
name = "rvf-desktop"
version = "2.0.0"
edition = "2021"
description = "RuVector Causal Atlas — native desktop app with embedded Three.js dashboard"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
[[bin]]
name = "ruvector"
path = "src/main.rs"
[dependencies]
wry = "0.49"
tao = { version = "0.32", features = ["rwh_06"] }
rust-embed = { version = "8", features = ["compression"] }
tiny_http = "0.12"
mime_guess = "2"
open = "5"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true