[package]
edition = "2018"
rust-version = "1.55"
name = "base116"
version = "0.1.11"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Like Base85… but 31 more."
documentation = "https://docs.rs/base116"
readme = "misc/crate-readme.md"
keywords = [
"base",
"encoding",
"base64",
"base85",
]
categories = [
"command-line-utilities",
"no-std",
]
license = "AGPL-3.0-or-later WITH AdditionRef-Eips-exceptions"
repository = "https://github.com/taylordotfish/base116"
[package.metadata.docs.rs]
features = ["doc_cfg"]
[features]
alloc = []
cli-panic = []
default = ["std"]
doc_cfg = []
std = ["alloc"]
[lib]
name = "base116"
path = "src/lib.rs"
[[bin]]
name = "base116"
path = "src/bin/base116.rs"
required-features = ["alloc"]