├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches └── bench.rs └── src ├── dec.rs ├── enc.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/README.md -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /src/dec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/src/dec.rs -------------------------------------------------------------------------------- /src/enc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/src/enc.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kornelski/rust_urlencoding/HEAD/src/lib.rs --------------------------------------------------------------------------------