[package]
edition = "2024"
rust-version = "1.85"
name = "alphanumeric-stepper"
version = "0.1.2"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A reversible alphanumeric sequence codec for compact serial codes like 000..999, A00..Z99, AA0..ZZ9, and AAA..ZZZ."
homepage = "https://magiclen.org/alphanumeric-stepper"
readme = "README.md"
keywords = [
"alphanumeric",
"codec",
"sequence",
"serial",
"radix",
]
categories = [
"no-std",
"encoding",
]
license = "MIT"
repository = "https://github.com/magiclen/alphanumeric-stepper"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = []
[lib]
name = "alphanumeric_stepper"
path = "src/lib.rs"
[dependencies]