uri-rs
A Rust crate for URI.

Install to Cargo.toml
Add this to your Cargo.toml:
[dependencies]
uri-rs = "<<version>>"
Usage
use uri_rs::Uri;
let s = "http://user1:pass1@localhost:8080/example?key1=value1&key2=value2&key1=value2#f1";
let uri = Uri::parse(s).unwrap();
println!("{:?}", uri);
println!("{}", uri.to_string());
Benchmarks
TODO
License
Licensed under either of
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.