tsift_sim_world/lib.rs
1//! `tsift-sim-world` is a deterministic test-harness crate.
2//!
3//! It carries no production surface of its own — the SimWorld harness and its
4//! seeded-corpus / named-edge-trace tests live in `tests/sim_world.rs`, where
5//! `tsift` and `tsift-cli` are available as dev-dependencies. Keeping the
6//! harness in an integration test (rather than a `#[cfg(test)]` module inside
7//! root `tsift`) avoids the `tsift -> tsift-sim-world -> tsift` lib cycle that
8//! a re-export would create, while still running under `cargo test --workspace`
9//! (and therefore `make check`).