[package]
name = "bitkit"
version = "3.2.3"
edition = "2021"
rust-version = "1.74"
authors = ["Keon Kim <kwk236@gmail.com>"]
description = "High-performance, width-aware bit manipulation around a single Bits<T> newtype."
license = "MIT"
repository = "https://github.com/keon/bitkit"
documentation = "https://docs.rs/bitkit"
homepage = "https://github.com/keon/bitkit"
readme = "README.md"
keywords = ["bits", "bitwise", "bit-manipulation", "morton", "no-std"]
categories = ["no-std", "embedded", "data-structures", "algorithms"]
exclude = [
"/.omc/",
"/.git/",
"/target/",
"/Cargo.lock",
"/benches/criterion/",
"/.github/",
]
[lib]
name = "bitkit"
path = "src/lib.rs"
[features]
default = ["std"]
std = ["alloc"]
alloc = []
explain = []
runtime-detect = ["std"]
[dev-dependencies]
proptest = "1"
criterion = { version = "0.5", default-features = false }
bitintr = "0.3"
bitvec = "1"
morton-encoding = "2"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[bench]]
name = "gather_scatter"
harness = false
[[bench]]
name = "primitives"
harness = false
[[bench]]
name = "workloads"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]