provwasm_std/types/ibc/mod.rs
1// Conditionally compile IBC modules based on feature flags
2#[cfg(any(feature = "ibc-all", feature = "ibc-applications"))]
3pub mod applications;
4
5#[cfg(any(feature = "ibc-all", feature = "ibc-core"))]
6pub mod core;
7
8#[cfg(any(feature = "ibc-all", feature = "ibc-lightclients"))]
9pub mod lightclients;