pokerbot 0.0.1

🚧 A Texas Hold'em Heads up pokerbot game binary and library abstraction (WIP, nothing usable for now).
Documentation
1
2
3
4
5
6
7
8
9
use version_check::is_feature_flaggable;

fn main() {
    println!("cargo::rustc-check-cfg=cfg(nightly)");

    if is_feature_flaggable() == Some(true) {
        println!("cargo:rustc-cfg=nightly");
    }
}