swactor/crates/std/Cargo.toml
zacheryasc 3c29293945 feat(std): add supervision, router, and registries
Adds the std crate on top of the core runtime: Supervisor with RestartPolicy
(Permanent/Transient/Temporary) and SupervisorStrategy (OneForOne/OneForAll/
RestForOne), Router with RoutingStrategy, name/monitor/group registries, StdExtension,
and Ctx/Runtime extension traits. Also extends core (worker, actor, delivery identity
hashing, config, stats), adds a fuzz target, a proptest suite, expands runtime_api
tests, and adds cfuzz cycle notes + benchmarks.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-13 07:11:24 +00:00

12 lines
226 B
TOML

[package]
name = "swactor-std"
version = "0.1.0"
edition = "2024"
[features]
default = ["getrandom"]
getrandom = ["dep:getrandom"]
[dependencies]
swactor = { path = "../.." }
getrandom = { version = "0.2", optional = true }