[package]
edition = "2024"
rust-version = "1.85"
name = "bitcram"
version = "0.3.0"
authors = ["Koji Murata <k@malt03.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, derive-based bit packing library for compact integer representations"
readme = "README.md"
keywords = [
"bit-packing",
"encoding",
"derive",
"compact",
"bitfield",
]
categories = [
"encoding",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/malt03/bitcram"
[lib]
name = "bitcram"
path = "src/lib.rs"
[[example]]
name = "mini_chess"
path = "examples/mini_chess.rs"
[[test]]
name = "packable"
path = "tests/packable.rs"
[dependencies.bitcram_derive]
version = "=0.3.0"