urlencoding-0.1.1 has been yanked.
urlencoding
A Rust library for doing URL percentage encoding.
Installation
This crate can be downloaded through Cargo. To do so, add the following line to your Cargo.toml file, under dependencies:
= "0.1"
Usage
To encode a string, do the following:
extern crate urlencoding;
use UrlEncoder;
Decoding is pending implementation.