URL parser for Rust
docs.rs/url/

Björn Steinbrink 965590ba18 Use `as_slice()` instead of a temporary to get &[T] instead of &[T, ..0] 12 سال پیش
src 965590ba18 Use `as_slice()` instead of a temporary to get &[T] instead of &[T, ..0] 12 سال پیش
.gitignore 6318279688 Use the new and shiny 'cargo doc' 12 سال پیش
.travis.yml dfd4376edb Use the new Rust support in Travis-CI 12 سال پیش
Cargo.toml 092c4e6503 Rename the crate to "url". 12 سال پیش
LICENSE-APACHE 0339bc2d9a Start with an empty crate. 13 سال پیش
LICENSE-MIT 0339bc2d9a Start with an empty crate. 13 سال پیش
README.md c651832cbb Remove done TODO item (Write documentation) in README. 12 سال پیش
github.png 6318279688 Use the new and shiny 'cargo doc' 12 سال پیش
make_encode_sets.py e18f7e460c Make implementation details of percent-encoding encode sets private. 12 سال پیش

README.md

rust-url

Build Status

Rust implementation of the URL Standard.

This is a replacement for Rust’s “old” (as of July 2014) url crate. See Rust bug #10707.

This buils with Cargo, pulling in rust-encoding as a depedency.

Documentation

To do

Not necessarily in the given order:

  • Deprecate and later remove rustc’s old liburl
  • Add data: URL parsing.
  • Add IDNA support. Non-ASCII domains are a parse error for now. Punycode is done, Nameprep is the other big part.
  • Add lots of tests. Contribute them to web-platform-tests.
  • Consider switching the spec from a state machine to functional style, like this code.