1 2 3 4 5 6 7 8
#[test] fn print_bin_env_vars() { for (k, v) in std::env::vars() { if k.starts_with("CARGO") { eprintln!("{k}={v}"); } } }