swactor/Cargo.toml
2026-01-26 09:11:35 +07:00

16 lines
325 B
TOML

[package]
name = "swactor"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["getrandom"]
getrandom = ["dep:getrandom"]
no_random = [] # compile without access to a source of randomness
[dependencies]
getrandom = { version = "0.2", optional = true }
crossbeam-queue = "0.3.12"