boostvoronoi_core 0.10.3

Boost voronoi private workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![deny(warnings)]

extern crate version_check as rustc;

fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    if let Some(is_feature_flaggable) = rustc::is_feature_flaggable() {
        // enable the "map_first_last" feature if using +nightly
        if is_feature_flaggable {
            println!("cargo:rustc-cfg=feature=\"map_first_last\"");
        }
    }
}