1[package] 2name = "base64" 3version = "0.12.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/marshallpierce/rust-base64" 7documentation = "https://docs.rs/base64" 8readme = "README.md" 9keywords = ["base64", "utf8", "encode", "decode", "no_std"] 10categories = ["encoding"] 11license = "MIT/Apache-2.0" 12edition = "2018" 13 14[[bench]] 15name = "benchmarks" 16harness = false 17 18[dev-dependencies] 19criterion = "0.3" 20rand = "0.6.1" 21 22[features] 23default = ["std"] 24alloc = [] 25std = [] 26 27[profile.bench] 28# Useful for better disassembly when using `perf record` and `perf annotate` 29debug = true 30