osmnodecache 0.3.0

Flat file OSM node cache to store (latitude,longitude) pairs as indexed entries
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate rustc_version;

use rustc_version::{version_meta, Channel};

fn main() {
    let meta = version_meta().unwrap();
    if meta.channel == Channel::Nightly {
        println!("cargo:rustc-cfg=feature=\"nightly\"");
    }
}