Reject duplicate codec registrations atomically, add stateful invariant suites, prune obsolete tests, and introduce engine-neutral benchmark workloads behind a thin Criterion adapter.
23 lines
483 B
TOML
23 lines
483 B
TOML
[package]
|
|
name = "swactor-benchmarks"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
publish = false
|
|
autobenches = false
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
swactor = { path = "../.." }
|
|
swactor-transport = { path = "../../crates/transport" }
|
|
telemetry = { path = "../../crates/telemetry" }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", default-features = false }
|
|
|
|
[[bench]]
|
|
name = "criterion"
|
|
harness = false
|
|
|
|
[lints]
|
|
workspace = true
|