No description
Find a file
Zachery Aaron Shores-Chmielewski a97864f7ec feat(mvp-system): expand one-node mvp binaries and provisioning
Flesh out mvp_node, mvp_one_node_chat, and mvp_orch_one_node binaries. Add node_image
and relay_provisioning; grow provisioning and vastai. Tune datastream mux/timing/emit.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-07-05 13:59:51 +04:00
.cargo feat(mvp-system): expand one-node mvp binaries and provisioning 2026-07-05 13:59:51 +04:00
.deploy refactor(dashboard): rebuild around swactor worker view 2026-06-25 11:29:16 +04:00
apps feat(mvp-system): expand one-node mvp binaries and provisioning 2026-07-05 13:59:51 +04:00
crates feat(mvp-system): expand one-node mvp binaries and provisioning 2026-07-05 13:59:51 +04:00
src refactor(dashboard): rebuild around swactor worker view 2026-06-25 11:29:16 +04:00
tests refactor(dashboard): rebuild around swactor worker view 2026-06-25 11:29:16 +04:00
tools/vastai refactor: extract iroh-driver crate, drop node example 2026-06-24 00:10:41 +04:00
xtask feat(mvp-system): expand one-node mvp binaries and provisioning 2026-07-05 13:59:51 +04:00
.dockerignore feat(mvp-chat): local e2e chat on cuda gpu 2026-07-01 12:44:25 +04:00
.gitignore feat(mvp-system): expand one-node mvp binaries and provisioning 2026-07-05 13:59:51 +04:00
Cargo.lock feat(mvp-system): expand one-node mvp binaries and provisioning 2026-07-05 13:59:51 +04:00
Cargo.toml feat: add mvp provisioning subsystem and datastream transport 2026-06-25 16:30:18 +04:00
mvp-node-image-gguf-shape.md feat(mvp-chat): local e2e chat on cuda gpu 2026-07-01 12:44:25 +04:00
README.md feat: add mvp provisioning subsystem and datastream transport 2026-06-25 16:30:18 +04:00
vastai-datastream-plugin-shape.md feat(mvp-chat): local e2e chat on cuda gpu 2026-07-01 12:44:25 +04:00

swactor

Minimal actor runtime for Rust. One trait, one message type. Single-threaded (tick()) or multi-threaded (run()).

Description

Core runtime is src/. Actors implement ActorInterface (in actor.rs), interact through Ctx (in runtime.rs), and run on worker threads (worker.rs).

crates/ builds upward: std adds OTP patterns (supervision, monitoring, groups), distribution adds clustering, everything else composes from there.

Dev commands

cargo xtask --help for the basic test command.

Testing

cargo check --workspace
cargo xtask test