Improve the runtime, increase test coverage, add new actor types for monitoring and supervision to an `std` crate.
12 lines
226 B
TOML
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 }
|