swactor/crates/engine/Cargo.toml
Zachery Aaron Shores-Chmielewski 1c8d6ab912 chore(test): enforce complete local test barrier
Deny workspace warnings and lint suppressions, consolidate Rust and Python coverage under cargo xtask test with 60-second per-test limits, and remove stale flaky, stateful, Docker, and orphaned test artifacts.
2026-08-22 21:31:08 +04:00

20 lines
322 B
TOML

[package]
name = "swactor-engine"
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-only"
[features]
default = ["tokio"]
tokio = ["dep:tokio"]
[dependencies]
swactor = { path = "../.." }
parking_lot = "0.12"
tokio = { workspace = true, optional = true }
[dev-dependencies]
proptest = "1"
[lints]
workspace = true