commonware-stream 0.0.13

Exchange messages over arbitrary transport.
Documentation
1
2
3
4
5
6
7
use std::io::Result;
fn main() -> Result<()> {
    // Proto compilation rules for `public_key` dialect
    let mut config = prost_build::Config::new();
    config.compile_protos(&["src/public_key/wire.proto"], &["src/public_key/"])?;
    Ok(())
}