2026-02-09 09:04:57 +00:00
|
|
|
[package]
|
2026-02-19 14:39:33 +00:00
|
|
|
name = "dashboard"
|
2026-02-09 09:04:57 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
feat: proper `README`, `LICENSE`, and our first quick example
Add project licensing and a full README, plus a minimal WebAssembly ping-pong example that exercises the actor runtime.
- `LICENSE`: add the full GNU AGPL-3.0 text and set `license = "AGPL-3.0-only"` on every package (`swactor`, each crate, `apps/myelin`, `tools/vastai`, `xtask`)
- `README.md`: rewrite from a stub into a full project overview, covering features (actor_id routing, WASM, iroh QUIC/SWIM, OTP-style std, process manager, zero-copy objects, datastream metrics, dashboard), architecture, examples, developing, status, and license
- `examples/ping-pong`: new standalone workspace (`pingpong` cdylib) where two actors volley on a single-threaded `wasm` runtime driven by a Node host via `tick()`, demonstrating spawning, message passing, and death monitoring (`watching`)
- `examples/ping-pong`: add a host/run harness -- `run.sh` (wasm-pack build + `run.mjs`), `serve.sh` (dashboard + static demo), `index.html`, and a pinned `Cargo.lock`
- `.gitignore`: stop ignoring `.loop/`, `.deployment-notes/`, and `.omp/`
Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-08-05 20:29:27 +00:00
|
|
|
license = "AGPL-3.0-only"
|
2026-02-09 09:04:57 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-06-25 07:29:16 +00:00
|
|
|
axum = "0.8"
|
2026-08-15 08:17:48 +00:00
|
|
|
telemetry = { path = "../telemetry" }
|
2026-06-24 09:30:29 +00:00
|
|
|
swactor = { path = "../..", features = ["serde"] }
|
Enforce actor-owned Myelin control flow
Add a repository-owned rustc wrapper that enforces execution ownership and dependency boundaries during ordinary Cargo commands, with compile-pass and compile-fail policy contracts.
Move scheduling, timers, provider polling, provisioning, recovery, supervision, and shutdown decisions behind engine and actor APIs. Add deterministic component properties, stateful Myelin lifecycle coverage, persisted regression cases, and the bounded CI workflow.
Tighten resource ownership by cancelling telemetry collectors, terminating reply observers, bounding dashboard projections, and releasing process file descriptors, child observers, and inode-verified Unix socket paths on every exit path.
2026-08-19 21:38:14 +00:00
|
|
|
swactor-engine = { path = "../engine" }
|
2026-06-25 07:29:16 +00:00
|
|
|
parking_lot = "0.12"
|
2026-02-09 09:04:57 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2026-08-03 10:18:24 +00:00
|
|
|
tokio.workspace = true
|
2026-02-19 14:39:33 +00:00
|
|
|
tokio-stream = "0.1"
|
2026-08-15 14:10:52 +00:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
# Live control actions (kill processes, provision nodes) for the
|
|
|
|
|
# provisioning-reconciler demo. Never enabled in shipping builds.
|
|
|
|
|
demo-control = []
|
Enforce actor-owned Myelin control flow
Add a repository-owned rustc wrapper that enforces execution ownership and dependency boundaries during ordinary Cargo commands, with compile-pass and compile-fail policy contracts.
Move scheduling, timers, provider polling, provisioning, recovery, supervision, and shutdown decisions behind engine and actor APIs. Add deterministic component properties, stateful Myelin lifecycle coverage, persisted regression cases, and the bounded CI workflow.
Tighten resource ownership by cancelling telemetry collectors, terminating reply observers, bounding dashboard projections, and releasing process file descriptors, child observers, and inode-verified Unix socket paths on every exit path.
2026-08-19 21:38:14 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
proptest = "1"
|
|
|
|
|
tower = { version = "0.5", features = ["util"] }
|