base64 0.23.0

encodes and decodes base64 as bytes or utf8
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.71.0"
name = "base64"
version = "0.23.0"
authors = ["Marshall Pierce <marshall@mpierce.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "encodes and decodes base64 as bytes or utf8"
documentation = "https://docs.rs/base64"
readme = "README.md"
keywords = [
    "base64",
    "utf8",
    "encode",
    "decode",
    "no_std",
]
categories = ["encoding"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/marshallpierce/rust-base64"

[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]

[features]
alloc = []
default = [
    "std",
    "simd-unsafe",
]
simd-unsafe = []
std = ["alloc"]

[lib]
name = "base64"
path = "src/lib.rs"

[[example]]
name = "base64"
path = "examples/base64.rs"
required-features = ["std"]

[[test]]
name = "encode"
path = "tests/encode.rs"
required-features = ["alloc"]

[[test]]
name = "tests"
path = "tests/tests.rs"
required-features = ["alloc"]

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
required-features = ["std"]

[dev-dependencies.clap]
version = "4.6.4"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.rand]
version = "0.10.2"

[dev-dependencies.rstest]
version = "0.26.1"

[dev-dependencies.rstest_reuse]
version = "0.7.0"

[dev-dependencies.strum]
version = "0.28.0"
features = ["derive"]

[profile.bench]
debug = 2

[profile.test]
opt-level = 3