[package]
edition = "2024"
rust-version = "1.85.0"
name = "base4"
version = "0.1.1"
authors = ["Syed-Anees <syedanees816@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A portable base4 bit packing codec implementation."
readme = "README.md"
keywords = [
"Base4",
"Codec",
"Decoding",
"Encoding",
]
categories = [
"encoding",
"compression",
"multimedia::encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SyedAnees21/Base4"
[lib]
name = "base4"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dev-dependencies.rand]
version = "0.9.1"