rstest_reuse 0.6.0

Reuse rstest attributes: create a set of tests and apply it to every scenario you want to test.
Documentation
use rustc_version::{version, Version};

fn main() {
    let ver = version().unwrap();
    assert!(ver.major >= 1);

    if ver <= Version::parse("1.50.0").unwrap() {
        println!("cargo:rustc-cfg=sanitize_multiple_should_panic_compiler_bug");
    }
}