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" 15name = "data-encoding" 16version = "2.6.0" 17authors = ["Julien Cretin <[email protected]>"] 18include = [ 19 "Cargo.toml", 20 "LICENSE", 21 "README.md", 22 "src/lib.rs", 23] 24description = "Efficient and customizable data-encoding functions like base64, base32, and hex" 25documentation = "https://docs.rs/data-encoding" 26readme = "README.md" 27keywords = [ 28 "no_std", 29 "base64", 30 "base32", 31 "hex", 32] 33categories = [ 34 "encoding", 35 "no-std", 36] 37license = "MIT" 38repository = "https://github.com/ia0/data-encoding" 39 40[package.metadata.docs.rs] 41rustdoc-args = ["--cfg=docsrs"] 42 43[features] 44alloc = [] 45default = ["std"] 46std = ["alloc"] 47