spectate_lib 0.0.4

A logging target for env_logger for use by the Spectate client
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io::Result;

fn main() -> Result<()> {
    tonic_build::configure()
        .build_server(false)
        .build_client(true)
        .compile(&["src/spectate.proto"], &["src/"])?;
    //prost_build::compile_protos(&["src/spectate.proto"], &["src/"])?;
    Ok(())
}