swactor/Cargo.toml
Zachery Aaron Shores-Chmielewski 3c5e3d2ece feat: hybrid channels
Add a mutex-locked Dequeue to prevent panics and failures on overflow.
2026-01-26 14:00:25 +07:00

22 lines
429 B
TOML

[package]
name = "swactor"
version = "0.1.0"
edition = "2024"
autobenches = false
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["getrandom"]
getrandom = ["dep:getrandom"]
no_random = [] # compile without access to a source of randomness
stress = [] # Enable stress tests
[dependencies]
getrandom = { version = "0.2", optional = true }
crossbeam-queue = "0.3.12"
[[bin]]
name = "bench"
path = "benches/main.rs"