osm-proto-rs 0.2.0

Prost-generated native Rust bindings for the OSM PBF file format
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate prost_build;

fn main() {
    prost_build::compile_protos(&["src/osm.proto"],
                                &["src/"],
                                None).unwrap();
    prost_build::compile_protos(&["src/fileformat.proto"],
                                &["src/"],
                                None).unwrap();
}