c32 0.2.0

Rust implementation of Crockford's Base32 encoding
Documentation
[[bench]]
harness = false
name = "decode"
path = "benches/decode.rs"

[[bench]]
harness = false
name = "encode"
path = "benches/encode.rs"

[dependencies.thiserror]
version = "2.0.11"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.rand]
version = "0.9.0"

[lib]
name = "c32"
path = "src/lib.rs"

[lints.clippy]
pedantic = "deny"

[lints.rust]
warnings = "deny"

[package]
authors = ["Max Karou <maxkarou@protonmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["encoding", "value-formatting", "parsing"]
description = "Rust implementation of Crockford's Base32 encoding"
documentation = "https://docs.rs/c32"
edition = "2021"
keywords = ["base32", "crockford", "stacks-blockchain"]
license = "MIT OR Apache-2.0"
name = "c32"
readme = "README.md"
repository = "https://github.com/52/c32"
rust-version = "1.56"
version = "0.2.0"

[[test]]
name = "error"
path = "tests/error.rs"

[[test]]
name = "macro"
path = "tests/macro.rs"

[[test]]
name = "rand"
path = "tests/rand.rs"

[[test]]
name = "samples"
path = "tests/samples.rs"

[[test]]
name = "unit"
path = "tests/unit.rs"