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
13 lines
297 B
TOML
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 }
|