rust-url ======== Rust implementation of the [URL Standard](http://url.spec.whatwg.org/). This is a replacement for Rust’s “old” (as of July 2014) `url` crate. See [Rust bug #10707](https://github.com/mozilla/rust/issues/10707). This buils with [Cargo](https://github.com/rust-lang/cargo), pulling in [rust-encoding](https://github.com/lifthrasiir/rust-encoding) as a depedency. To do ----- Not necessarily in the given order: * Land it in rust-http and Servo. * Write documentation * Set up continuous integration and documentation hosting * Deprecate and later remove rustc’s old liburl * Add `data:` URL parsing. * Add [IDNA support](http://url.spec.whatwg.org/#idna). Non-ASCII domains are a parse error for now. [Punycode](http://tools.ietf.org/html/rfc3492) is done, [Nameprep](http://tools.ietf.org/html/rfc3491) is the other big part. * Add lots of tests. Contribute them to [web-platform-tests](https://github.com/w3c/web-platform-tests/tree/master/url). * Consider switching the spec from a state machine to functional style, like this code.