mvt-reader 2.1.0

A library for decoding and reading mapbox vector tiles in Rust and WebAssembly
Documentation
1
2
3
4
5
6
7
8
use std::io::Result;

fn main() -> Result<()> {
  let mut prost_build = prost_build::Config::new();
  prost_build.btree_map(["."]);
  prost_build.compile_protos(&["vector-tile-spec/2.1/vector_tile.proto"], &["."])?;
  Ok(())
}