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.1" 17authors = ["Marshall Pierce <[email protected]>"] 18description = "encodes and decodes base64 as bytes or utf8" 19documentation = "https://docs.rs/base64" 20readme = "README.md" 21keywords = [ 22 "base64", 23 "utf8", 24 "encode", 25 "decode", 26 "no_std", 27] 28categories = ["encoding"] 29license = "MIT OR Apache-2.0" 30repository = "https://github.com/marshallpierce/rust-base64" 31 32[package.metadata.docs.rs] 33rustdoc-args = ["--generate-link-to-definition"] 34 35[profile.bench] 36debug = 2 37 38[profile.test] 39opt-level = 3 40 41[[example]] 42name = "base64" 43required-features = ["std"] 44 45[[test]] 46name = "tests" 47required-features = ["alloc"] 48 49[[test]] 50name = "encode" 51required-features = ["alloc"] 52 53[[bench]] 54name = "benchmarks" 55harness = false 56required-features = ["std"] 57 58[dev-dependencies.clap] 59version = "3.2.25" 60features = ["derive"] 61 62[dev-dependencies.criterion] 63version = "0.4.0" 64 65[dev-dependencies.once_cell] 66version = "1" 67 68[dev-dependencies.rand] 69version = "0.8.5" 70features = ["small_rng"] 71 72[dev-dependencies.rstest] 73version = "0.13.0" 74 75[dev-dependencies.rstest_reuse] 76version = "0.6.0" 77 78[dev-dependencies.strum] 79version = "0.25" 80features = ["derive"] 81 82[features] 83alloc = [] 84default = ["std"] 85std = ["alloc"] 86