slotmap 1.0.2

Slotmap data structure
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    if !version_check::is_min_version("1.49.0").unwrap_or(true) {
        println!("cargo:warning=slotmap requires rustc => 1.49.0");
    }

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