num_enum 0.5.7

Procedural macros to make inter-operation between primitives and enums easier.
Documentation
#[test]
fn no_std() {
    assert!(::std::process::Command::new("cargo")
        .args(&[
            "run",
            "--manifest-path",
            concat!(
                env!("CARGO_MANIFEST_DIR"),
                "/../renamed_num_enum/Cargo.toml",
            ),
        ])
        .status()
        .unwrap()
        .success())
}

#[test]
fn std() {
    assert!(::std::process::Command::new("cargo")
        .args(&[
            "run",
            "--manifest-path",
            concat!(
                env!("CARGO_MANIFEST_DIR"),
                "/../renamed_num_enum/Cargo.toml",
            ),
            "--features",
            "std",
        ])
        .status()
        .unwrap()
        .success())
}