post-cortex-proto 0.3.0

Protobuf + tonic-generated wire types for post-cortex. Domain-neutral; safe to depend on from gRPC clients without pulling the full server stack.
Documentation
1
2
3
4
5
6
//! Build script that compiles the gRPC protobuf definitions via `tonic-build`.

fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::compile_protos("proto/pcx.proto")?;
    Ok(())
}