1[package]
2name = "base64"
3version = "0.9.3"
4authors = ["Alice Maz <alice@alicemaz.com>", "Marshall Pierce <marshall@mpierce.org>"]
5description = "encodes and decodes base64 as bytes or utf8"
6repository = "https://github.com/alicemaz/rust-base64"
7documentation = "https://github.com/alicemaz/rust-base64/blob/master/README.md"
8readme = "README.md"
9keywords = ["base64", "utf8", "encode", "decode"]
10categories = ["encoding"]
11license = "MIT/Apache-2.0"
12
13[dependencies]
14byteorder = "1.1.0"
15safemem = "0.3"
16
17[dev-dependencies]
18rand = "0.4"
19
20[profile.bench]
21# Useful for better disassembly when using `perf record` and `perf annotate`
22debug = true
23