rstest_reuse 0.3.0

Reuse rstest attributes: create a set of tests and apply it to every scenario you want to test.
Documentation
1
2
3
4
5
6
7
8
9
10
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");
    }
}