cuqueclicker 0.1.0

A TUI idle clicker where you finger an ASCII ass instead of clicking a cookie.
1
2
3
4
5
6
7
8
9
/// `CARGO_PKG_VERSION` at compile time. "0.0.0" means a dev build; release
/// builds have `Cargo.toml` patched from the git tag before compilation.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

/// Dev build marker. `release.yml` swaps `Cargo.toml` version before building,
/// so any binary whose version is still "0.0.0" is an unreleased build.
pub fn is_dev_build() -> bool {
    VERSION == "0.0.0"
}