-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathtendermint.rs
67 lines (52 loc) · 1.16 KB
/
tendermint.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//! Tendermint-proto auto-generated sub-modules for Tendermint
pub mod consensus {
include!("prost/tendermint.consensus.rs");
}
pub mod types {
include!("prost/tendermint.types.rs");
}
pub mod mempool {
include!("prost/tendermint.mempool.rs");
}
pub mod rpc {
pub mod grpc {
include!("prost/tendermint.rpc.grpc.rs");
}
}
pub mod blockchain {
include!("prost/tendermint.blockchain.rs");
}
pub mod libs {
pub mod bits {
include!("prost/tendermint.libs.bits.rs");
}
}
pub mod state {
include!("prost/tendermint.state.rs");
}
pub mod version {
include!("prost/tendermint.version.rs");
}
pub mod store {
include!("prost/tendermint.store.rs");
}
pub mod privval {
include!("prost/tendermint.privval.rs");
}
pub mod statesync {
include!("prost/tendermint.statesync.rs");
}
pub mod p2p {
include!("prost/tendermint.p2p.rs");
}
pub mod abci {
use crate::prelude::*;
include!("prost/tendermint.abci.rs");
}
pub mod crypto {
include!("prost/tendermint.crypto.rs");
}
pub mod meta {
pub const REPOSITORY: &str = "https://github.com/tendermint/tendermint";
pub const COMMITISH: &str = "v0.34.9";
}