[package]
edition = "2024"
name = "bitlist"
version = "0.0.3"
authors = ["Kazik24 <kazik24official@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Word-sized bit list implementation with bigint functionality"
homepage = "https://github.com/Kazik24/bitlist"
documentation = "https://docs.rs/bitlist/latest/bitlist"
readme = "README.md"
keywords = [
"bitfields",
"bitset",
"bitvec",
"int",
"bigint",
]
categories = [
"data-structures",
"mathematics",
"algorithms",
]
license = "MIT"
repository = "https://github.com/Kazik24/bitlist"
[features]
align_16 = []
align_32 = []
[lib]
name = "bitlist"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.rand]
version = "0.10"