1#![forbid(unsafe_code)] 2 3#[cfg(feature = "client")] 4pub mod client; 5 6#[cfg(feature = "sms")] 7pub mod sms; 8 9#[cfg(feature = "news")] 10pub mod news; 11 12#[cfg(feature = "location")] 13pub mod location; 14 15pub mod serde;