voxelize 0.8.93

A fast multiplayer voxel engine.
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let mut prost_build = prost_build::Config::new();
    prost_build
        .protoc_arg("--experimental_allow_proto3_optional")
        .type_attribute(".", "#[derive(serde::Serialize, serde::Deserialize)]")
        .compile_protos(&["./messages.proto"], &["."])
        .unwrap();
}