ibc_clients/lib.rs
1//! Exports data structures and implementations of different IBC applications.
2#![no_std]
3#![forbid(unsafe_code)]
4#![cfg_attr(not(test), deny(clippy::unwrap_used))]
5#![cfg_attr(not(test), deny(clippy::disallowed_methods, clippy::disallowed_types))]
6#![deny(
7 warnings,
8 trivial_numeric_casts,
9 unused_import_braces,
10 unused_qualifications,
11 rust_2018_idioms
12)]
13
14/// Re-exports implementations of ICS-07 Tendermint light client.
15pub mod tendermint {
16 #[doc(inline)]
17 pub use ibc_client_tendermint::*;
18}
19
20/// Re-exports implementations of ICS-08 Wasm light client types.
21pub mod wasm_types {
22 #[doc(inline)]
23 pub use ibc_client_wasm_types::*;
24}