- Uses only safe features in rust
- Working towards
rfc2396&rfc3986compliance
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:password@example.com/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
- Parsing fragments
- RFC 3986 compliant character sets (userinfo, path, query)
- Net loc compliance
- Parsing IPv4, IPv6
- Percent encoding and decoding
- QuickCheck property-based testing