[package]
edition = "2024"
name = "base122-fast"
version = "0.1.3"
authors = ["lhear"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Base122 codex (6+ Gbps) with lower overhead (~14%) than Base64."
documentation = "https://docs.rs/base122-fast"
readme = "README.md"
keywords = [
"encoding",
"base122",
"binary-to-text",
"performance",
"serialization",
]
categories = [
"encoding",
"algorithms",
"no-std",
]
license = "MIT"
repository = "https://github.com/lhear/base122-fast"
[lib]
name = "base122_fast"
path = "src/lib.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.rand]
version = "0.10.1"