[package]
edition = "2021"
name = "itybity"
version = "0.3.2"
authors = ["sinui0"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An itty bitty crate providing bit iterators and bit iterator accessories."
readme = "README.md"
keywords = [
"bit",
"iterator",
"bitvec",
"bitstring",
"convert",
]
categories = [
"data-structures",
"encoding",
"no-std::no-alloc",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sinui0/itybity"
[features]
alloc = []
default = ["std"]
rayon = [
"std",
"dep:rayon",
]
std = ["alloc"]
[lib]
name = "itybity"
path = "src/lib.rs"
[dependencies.rayon]
version = "1"
optional = true
[dev-dependencies.rstest]
version = "0.25"