hashbrown 0.5.1

A Rust port of Google's SwissTable hash map
Documentation
fn main() {
    let nightly = std::env::var_os("CARGO_FEATURE_NIGHTLY").is_some();
    let has_stable_alloc = || autocfg::new().probe_rustc_version(1, 36);

    if nightly || has_stable_alloc() {
        autocfg::emit("has_extern_crate_alloc")
    }
}