urlencoding-0.2.0 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.2"
Usage
To encode a string, do the following:
extern crate urlencoding;
use encode;
Decoding is pending implementation.