urlencoding-1.0.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
:
= "1.0.0"
Usage
To encode a string, do the following:
extern crate urlencoding;
use encode;
To decode a string, it's only slightly different:
extern crate urlencoding;
use decode;
License
This project is licensed under the MIT license, Copyright (c) 2017 Bertram Truong. For more information see the LICENSE
file.