bitstructs 0.2.0

Defining type-safe bitfield structures that can be used in both `std` and `no_std` environments.
Documentation
[package]
name = "bitstructs"
# When releasing to crates.io:
# - Update CHANGELOG.md.
# - Update version.
# - Create "v0.2.x" git tag.
version = "0.2.0"
edition = "2024"
license = "MIT"
description = "Defining type-safe bitfield structures that can be used in both `std` and `no_std` environments."
keywords = ["no_std", "bitfield", "bitstruct", "bitstructs"]
repository = "https://github.com/small-white0-0/bitstructs"
exclude = ["tests", "examples"]

[dependencies]
bitstructs_macro = { path = "../bitstructs_macro", version = "0.2.0" }

[features]
no_std = []

[dev-dependencies]
rand = "0.9.0"