hyperlane_cosmos_rs/
lib.rs

1pub use cosmrs::proto::cosmos;
2pub use prost;
3pub use tendermint_proto as tendermint;
4pub use tendermint_proto::google::protobuf::{Any, Timestamp};
5
6pub mod hyperlane {
7    pub mod core {
8        pub mod v1 {
9            include!("prost/hyperlane.core.v1.rs");
10        }
11        pub mod interchain_security {
12            pub mod v1 {
13                include!("prost/hyperlane.core.interchain_security.v1.rs");
14            }
15        }
16        pub mod post_dispatch {
17            pub mod v1 {
18                include!("prost/hyperlane.core.post_dispatch.v1.rs");
19            }
20        }
21    }
22
23    pub mod warp {
24        pub mod v1 {
25            include!("prost/hyperlane.warp.v1.rs");
26        }
27    }
28}