1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![no_std]
#![allow(rustdoc::bare_urls)]
#![allow(clippy::large_enum_variant)]

/// ABCI Message types.
pub mod abci {
    include!("protos/tendermint.abci.rs");
}

/// Types for ABCI.
pub mod types {
    include!("protos/tendermint.types.rs");
}

/// Version type.
pub mod version {
    include!("protos/tendermint.version.rs");
}

/// Crypto type.
pub mod crypto {
    include!("protos/tendermint.crypto.rs");
}