Some checks failed
CI / fmt (push) Has been cancelled
CI / clippy (push) Has been cancelled
CI / test (1.85) (push) Has been cancelled
CI / test (stable) (push) Has been cancelled
CI / deny (push) Has been cancelled
CI / sim-bench (stable) (push) Has been cancelled
CI / twilio-live (manual only) (push) Has been cancelled
Co-authored-by: Aaron D. Lee <himself@adlee.work> Co-committed-by: Aaron D. Lee <himself@adlee.work>
32 lines
1.2 KiB
TOML
32 lines
1.2 KiB
TOML
# crates/rutster-sim/Cargo.toml — the self-hostable benchmark + simulation
|
|
# harness crate (ADR-0010 spearhead step 4½). Default-off `sim-bench`
|
|
# feature gates the CI-regressed threshold sweep so the routine
|
|
# `cargo test --all` gate stays fast.
|
|
[package]
|
|
name = "rutster-sim"
|
|
version = "0.0.0"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
description = "Self-hostable benchmark + simulation harness (ADR-0010 spearhead step 4½)."
|
|
|
|
[dependencies]
|
|
rutster-media = { path = "../rutster-media" }
|
|
rutster = { path = "../rutster" }
|
|
rutster-tap = { path = "../rutster-tap" }
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "sync", "time"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
toml = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
# The CI-regressed threshold sweep. Default OFF so `cargo test --all` (the
|
|
# routine gate) stays fast. A separate CI job runs
|
|
# `cargo test --all --features=sim-bench -- --test-threads=1` per spec §5.4 +
|
|
# §6.5. A latency regression fails the build the same way a broken test
|
|
# does (ADR-0010).
|
|
sim-bench = []
|