mvt 0.13.0

A library for encoding mapbox vector tiles
Documentation
1
2
3
4
5
6
7
8
9
#![forbid(unsafe_code)]

// Update vector tile module to new protobuf version
fn main() {
    prost_build::Config::new()
        .out_dir("src")
        .compile_protos(&["protos/vector_tile.proto"], &["protos"])
        .expect("Codegen failed");
}