commonware-resolver 0.0.42

Resolve data identified by a fixed-length key.
Documentation
1
2
3
4
5
6
7
use std::io::Result;
fn main() -> Result<()> {
    let mut config = prost_build::Config::new();
    config.bytes(["PeerMsg.request", "PeerMsg.response"]);
    config.compile_protos(&["src/p2p/wire.proto"], &["src/p2p/"])?;
    Ok(())
}