No description
Find a file
2026-07-30 12:18:02 +04:00
.cargo slow but working mvp-chat 2026-07-22 11:50:53 +04:00
apps/mvp-node feat: working 7B inferenced over 4 pipeline stages 2026-07-27 10:47:17 +04:00
crates refactor: fold driver pumps into iroh-driver and codecs into transport 2026-07-30 12:18:02 +04:00
src feat: working two stage pipeline parallel over vastai 2026-07-24 12:59:32 +04:00
tests actor direct control through runtime admin 2026-07-08 19:23:03 +04:00
tools/vastai fix: faster provisioning, better ssh checks 2026-07-27 12:30:49 +04:00
xtask refactor: actorization polish and stability 2026-07-29 12:14:52 +04:00
.dockerignore stash 2026-07-07 14:40:02 +04:00
.gitignore refactor: fold driver pumps into iroh-driver and codecs into transport 2026-07-30 12:18:02 +04:00
Cargo.lock refactor: data movement handled by an independant crate 2026-07-28 21:30:56 +04:00
Cargo.toml stash: current progress on refactoring 2026-07-28 11:29:31 +04:00
README.md stash 2026-06-25 16:30:18 +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