tonic-include-proto 0.1.1

Macro to include protobuf built with tonic
Documentation
1
2
3
4
5
6
7
8
fn main() {
    tonic_build::configure()
        .compile(
            &["proto/xy.proto".to_owned(), "proto/xz.proto".to_owned()],
            &["proto".to_owned()],
        )
        .unwrap();
}