2025-11-25 00:39:17 +00:00
|
|
|
[package]
|
|
|
|
|
name = "swactor"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
2026-01-26 07:00:25 +00:00
|
|
|
autobenches = false
|
2025-11-25 00:39:17 +00:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
2026-01-23 05:00:57 +00:00
|
|
|
[features]
|
|
|
|
|
default = ["getrandom"]
|
|
|
|
|
getrandom = ["dep:getrandom"]
|
2026-01-26 02:10:56 +00:00
|
|
|
no_random = [] # compile without access to a source of randomness
|
2026-01-26 04:11:49 +00:00
|
|
|
stress = [] # Enable stress tests
|
2026-01-23 05:00:57 +00:00
|
|
|
|
2025-11-25 00:39:17 +00:00
|
|
|
[dependencies]
|
2026-01-23 05:00:57 +00:00
|
|
|
getrandom = { version = "0.2", optional = true }
|
|
|
|
|
crossbeam-queue = "0.3.12"
|
2026-01-26 04:11:49 +00:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "bench"
|
|
|
|
|
path = "benches/main.rs"
|