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.
20 lines
322 B
TOML
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
|