Files
third_party_rust_rust-base64/Cargo.toml
T
Marshall Pierce de23aa3f2b Remove running tests in the readme
It is too much of a pain to support stable (which supports `cfg(doctest)`), 1.39.0 (which has it, but as an experimental feature), and 1.34.0 (which doesn't have it at all).

Fixes #135.
2020-06-24 19:08:13 -06:00

30 lines
702 B
TOML

[package]
name = "base64"
version = "0.12.2"
authors = ["Alice Maz <alice@alicemaz.com>", "Marshall Pierce <marshall@mpierce.org>"]
description = "encodes and decodes base64 as bytes or utf8"
repository = "https://github.com/marshallpierce/rust-base64"
documentation = "https://docs.rs/base64"
readme = "README.md"
keywords = ["base64", "utf8", "encode", "decode", "no_std"]
categories = ["encoding"]
license = "MIT/Apache-2.0"
edition = "2018"
[[bench]]
name = "benchmarks"
harness = false
[dev-dependencies]
criterion = "0.3"
rand = "0.6.1"
[features]
default = ["std"]
alloc = []
std = []
[profile.bench]
# Useful for better disassembly when using `perf record` and `perf annotate`
debug = true