1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
//! module url parses URLs and implements query escaping. //! //! See RFC 3986. This package generally follows RFC 3986, except where //! it deviates for compatibility reasons. When sending changes, first //! search old issues for history on decisions. Unit tests should also //! contain references to issue numbers with details. mod path; mod query; mod url; mod user_info; mod values; mod internal; pub mod errors; pub use path::*; pub use query::*; pub use url::*; pub use user_info::*; pub use values::*; #[cfg(test)] mod tests; //#[cfg(test)] //mod examples;