rudzio-migrate 0.1.2

Best-effort converter of stock cargo-style Rust tests into rudzio tests. Runs on a clean git tree, rewrites sources in place, keeps backups and pre-migration copies as block comments, and asks before wiring a shared runner.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Binary entry point. All orchestration lives in
//! `rudzio_migrate::run::entry` so the library surface and the
//! integration tests can drive the same flow.

use std::process::ExitCode;

use rudzio_migrate::run;

fn main() -> ExitCode {
    run::entry()
}