No description
Find a file
2026-07-23 14:58:03 +04:00
.cargo slow but working mvp-chat 2026-07-22 11:50:53 +04:00
apps/mvp-node stash: local single-node gpu prompt loop 2026-07-23 13:39:17 +04:00
crates feat: mvp-chat multinode docker test with network masking 2026-07-23 14:58:03 +04:00
src process manager refactor 2026-07-18 15:21:34 +04:00
tests actor direct control through runtime admin 2026-07-08 19:23:03 +04:00
tools/vastai stash 2026-07-07 14:40:02 +04:00
xtask feat: mvp-chat multinode docker test with network masking 2026-07-23 14:58:03 +04:00
.dockerignore stash 2026-07-07 14:40:02 +04:00
.gitignore stash 2026-07-07 14:40:02 +04:00
Cargo.lock slow but working mvp-chat 2026-07-22 11:50:53 +04:00
Cargo.toml stash 2026-06-25 16:30:18 +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