tm-protos 0.1.1

tendermint ABCI protobuf types in no_std
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io::Result;

fn main() -> Result<()> {
    prost_build::compile_protos(
        &[
            "tendermint/crypto/proof.proto",
            "tendermint/crypto/keys.proto",
            "tendermint/version/types.proto",
            "tendermint/types/types.proto",
            "tendermint/abci/types.proto",
        ],
        &["tendermint"],
    )?;
    Ok(())
}