bevy_state_plugin_generator 1.4.4

A build-dependency that generates a Bevy State Plugin from a simple state definition.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    println!("cargo::rustc-check-cfg=cfg(coverage_nightly)");
    #[cfg(feature = "dev")]
    {
        use std::process::Command;
        assert!(
            Command::new("git")
                .args(["config", "--local", "core.hooksPath", "hooks"])
                .status()
                .map(|code| code.success())
                .unwrap(),
            "configure_hooks_path: unexpected exit code"
        );
    }
}