//! `rudzio-migrate` — best-effort converter of cargo-style Rust tests
//! into rudzio tests. This module exposes the internals as a library
//! so the thin `src/main.rs` binary and the integration test harness
//! can both reach them.
// All `pub` items in this crate are internal to the
// `rudzio-migrate` workspace member. `unreachable_pub` would force
// `pub(crate)` on every reusable API; scoped here for readability.
// `dead_code` is allowed because some helpers are built ahead of
// their caller as modules grow.