swactor/crates/std/Cargo.toml
Claude 3e44579e5c feat: swactor-std feature parity in wasm (Stage 4)
Enable naming, groups, watching, and stats in the browser runtime.
Fix core watching gap: StopSignal deaths now trigger WatchRegistry
notifications. Add register_name to RuntimeNaming trait. Cfg-gate
getrandom in router.rs for wasm builds. 30 Node.js tests pass.

Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
2026-02-13 20:20:09 +07:00

13 lines
297 B
TOML

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