geese 0.3.0

Dead-simple game event system for Rust.
Documentation
1
2
3
4
5
6
7
8
9
/// Marks the crate as being compiled with unstable features enabled.
#[rustversion::nightly]
fn main() {
    println!("cargo:rustc-cfg=unstable");
}

/// Marks the crate as being compiled without unstable features.
#[rustversion::not(nightly)]
fn main() {}