swactor/crates/std/Cargo.toml
zacheryasc 18cabdb94d feat: skeleton for in browser swactor engine (#35)
Skeleton up for a web browser swactor engine that is capable of connecting with a cluster.


Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-13 13:27:34 +00: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 }