- Uses only safe features in rust
- Working towards
rfc2396
&rfc3986
compliance
foo://example.com:8042/over/there?name=ferret#nose
\_/ \______________/\_________/ \_________/ \__/
| | | | |
scheme authority path query fragment
use auris::URI;
"postgres://user:password@host".parse::<URI<String>>();
"https://crates.io/crates/auris".parse::<URI<String>>();
We also parse query strings into HashMaps:
"postgres://user:[email protected]/db?replication=true".parse::<URI<String>>();
In the case of duplicated query string tags the last one wins:
"scheme://host/path?a=1&a=2".parse::<URI<String>>();
- Ports
- Split up into multiple files
- Domains with .
- Rendering of URIs and Authority with fmt::Display
- Net loc compliance
- Parsing IPv4, IPv6
- Parsing fragments
- Percent encoding and decoding
- QuickCheck?