dynamic_bitset 1.0.2

A dynamic bitset using a vector to store 32 bit unsigned integers. Provides a serde feature flag to enable Serialization and Deserialization of bitset
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "dynamic_bitset"
version = "1.0.2"
edition = "2024"
license = "MIT"
keywords = ["bitset", "serde", "dynamic", "boolean", "bitshift"]
categories = ["data-structures"]
description = "A dynamic bitset using a vector to store 32 bit unsigned integers.\nProvides a serde feature flag to enable Serialization and Deserialization of bitset"
readme = "README.md"
repository = "https://github.com/Kleefuchs/dynamic-bitset-rs"


[dependencies]
serde = { version = "1.0.228", features = ["derive"], optional = true }

[features]
serde = ["dep:serde"]