• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "data-encoding"
3version = "2.5.0"
4authors = ["Julien Cretin <git@ia0.eu>"]
5license = "MIT"
6edition = "2018"
7rust-version = "1.48"
8keywords = ["no_std", "base64", "base32", "hex"]
9categories = ["encoding", "no-std"]
10readme = "README.md"
11repository = "https://github.com/ia0/data-encoding"
12documentation = "https://docs.rs/data-encoding"
13description = "Efficient and customizable data-encoding functions like base64, base32, and hex"
14include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]
15
16# TODO: Remove this once doc_auto_cfg is in the MSRV.
17[package.metadata.docs.rs]
18rustdoc-args = ["--cfg=docsrs"]
19
20[features]
21default = ["std"]
22alloc = []
23std = ["alloc"]
24