[package]
edition = "2024"
rust-version = "1.85"
name = "data-encoding-v3"
version = "0.1.2"
build = false
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"src/lib.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Development branch of data-encoding 3.0.0"
documentation = "https://docs.rs/data-encoding"
readme = "README.md"
keywords = [
"no_std",
"base64",
"base32",
"hex",
]
categories = [
"encoding",
"no-std",
]
license = "MIT"
repository = "https://github.com/ia0/data-encoding"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg=docsrs"]
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "data_encoding_v3"
path = "src/lib.rs"
[lints.clippy]
assigning-clones = "allow"
doc-markdown = "allow"
enum-glob-use = "allow"
match-bool = "allow"
semicolon-if-nothing-returned = "allow"
similar-names = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
elided-lifetimes-in-paths = "warn"
let-underscore-drop = "warn"
missing-debug-implementations = "warn"
missing-docs = "warn"
unreachable-pub = "warn"
unused-results = "warn"