1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.48.0" 15name = "base64" 16version = "0.22.0" 17authors = [ 18 "Alice Maz <alice@alicemaz.com>", 19 "Marshall Pierce <marshall@mpierce.org>", 20] 21description = "encodes and decodes base64 as bytes or utf8" 22documentation = "https://docs.rs/base64" 23readme = "README.md" 24keywords = [ 25 "base64", 26 "utf8", 27 "encode", 28 "decode", 29 "no_std", 30] 31categories = ["encoding"] 32license = "MIT OR Apache-2.0" 33repository = "https://github.com/marshallpierce/rust-base64" 34 35[package.metadata.docs.rs] 36rustdoc-args = ["--generate-link-to-definition"] 37 38[profile.bench] 39debug = 2 40 41[profile.test] 42opt-level = 3 43 44[[example]] 45name = "base64" 46required-features = ["std"] 47 48[[test]] 49name = "tests" 50required-features = ["alloc"] 51 52[[test]] 53name = "encode" 54required-features = ["alloc"] 55 56[[bench]] 57name = "benchmarks" 58harness = false 59required-features = ["std"] 60 61[dev-dependencies.clap] 62version = "3.2.25" 63features = ["derive"] 64 65[dev-dependencies.criterion] 66version = "0.4.0" 67 68[dev-dependencies.once_cell] 69version = "1" 70 71[dev-dependencies.rand] 72version = "0.8.5" 73features = ["small_rng"] 74 75[dev-dependencies.rstest] 76version = "0.13.0" 77 78[dev-dependencies.rstest_reuse] 79version = "0.6.0" 80 81[dev-dependencies.strum] 82version = "0.25" 83features = ["derive"] 84 85[features] 86alloc = [] 87default = ["std"] 88std = ["alloc"] 89