blob: 30e73eecc64ad04701c43e14a17e4238450bcd7f [file] [log] [blame]
Jeff Vander Stoep0029ba42021-06-25 09:40:28 +02001[package]
2name = "base64"
3version = "0.13.0"
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]
19# 0.3.3 requires rust 1.36.0 for stable copied()
20criterion = "=0.3.2"
21rand = "0.6.1"
22structopt = "0.3"
23
24[features]
25default = ["std"]
26alloc = []
27std = []
28
29[profile.bench]
30# Useful for better disassembly when using `perf record` and `perf annotate`
31debug = true