1
2
3
4
5
6
7
8
9
#[cfg(all(feature = "std", feature = "idna"))]
mod host;
#[cfg(all(feature = "std", feature = "idna"))]
pub use host::*;

#[cfg(feature = "http_ftp_url")]
mod protocol;
#[cfg(feature = "http_ftp_url")]
pub use protocol::*;