tm_protos/
lib.rs

1#![no_std]
2#![allow(rustdoc::bare_urls)]
3#![allow(clippy::large_enum_variant)]
4#![allow(clippy::derive_partial_eq_without_eq)]
5
6/// ABCI Message types.
7pub mod abci {
8    include!("protos/tendermint.abci.rs");
9}
10
11/// Types for ABCI.
12pub mod types {
13    include!("protos/tendermint.types.rs");
14}
15
16/// Version type.
17pub mod version {
18    include!("protos/tendermint.version.rs");
19}
20
21/// Crypto type.
22pub mod crypto {
23    include!("protos/tendermint.crypto.rs");
24}