mirror of
https://github.com/ruvnet/RuView
synced 2026-06-09 10:13:17 +00:00
7f5a692632
Squashed merge of feat/nvsim-pipeline-simulator (29 commits). ## Shipped - ADR-089 nvsim crate (Accepted) — 50/50 tests, ~4.5 M samples/s, pinned witness cc8de9b01b0ff5bd… - ADR-092 dashboard implementation (Implemented) — 8/12 §11 gates ✅, 4/12 ⚠ (external infra) - ADR-093 dashboard gap analysis (Implemented) — 21/21 catalogued gaps closed - Plus ADR-090 (proposed conditional) and ADR-091 (proposed research-only) ## Live deploy https://ruvnet.github.io/RuView/nvsim/ ## Infra - nvsim-server Dockerfile + GHCR publish workflow (.github/workflows/nvsim-server-docker.yml) - axe-core + Playwright cross-browser CI (.github/workflows/dashboard-a11y.yml) - gh-pages auto-deploy workflow already in place (preserves observatory + pose-fusion siblings) Co-Authored-By: claude-flow <ruv@ruv.net>
29 lines
891 B
TOML
29 lines
891 B
TOML
[package]
|
|
name = "nvsim-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Axum REST + WebSocket server fronting the nvsim NV-diamond pipeline simulator (ADR-092 §6.2)."
|
|
repository.workspace = true
|
|
keywords = ["nvsim", "axum", "websocket", "magnetometer", "simulator"]
|
|
categories = ["science", "web-programming", "simulation"]
|
|
|
|
[[bin]]
|
|
name = "nvsim-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
nvsim = { path = "../nvsim" }
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tower = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
|
|
futures-util = "0.3"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
thiserror = { workspace = true }
|