[package]
edition = "2024"
rust-version = "1.85"
name = "bitcraft"
version = "0.9.2"
authors = ["Dilip Vamsi Moturi"]
build = false
exclude = [
"sample/",
"Makefile",
"sample/**/*.py",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-cost, hardware-aligned bitfield and enumeration generator."
homepage = "https://github.com/dilipvamsi/bitcraft"
documentation = "https://docs.rs/bitcraft"
readme = "README.md"
keywords = [
"bitfield",
"bitcraft",
"no-std",
"performance",
"embedded",
]
categories = [
"embedded",
"data-structures",
"no-std",
]
license = "MIT"
repository = "https://github.com/dilipvamsi/bitcraft"
[lib]
name = "bitcraft"
path = "src/lib.rs"
[[test]]
name = "byte_tests"
path = "tests/byte_tests.rs"
[[test]]
name = "debug_verify"
path = "tests/debug_verify.rs"
[[test]]
name = "example_control_register_test"
path = "tests/example_control_register_test.rs"
[[test]]
name = "example_protocol_header_test"
path = "tests/example_protocol_header_test.rs"
[[test]]
name = "fuzz_properties"
path = "tests/fuzz_properties.rs"
[[test]]
name = "performance"
path = "tests/performance.rs"
[dependencies.bytemuck]
version = "1.25"
features = ["derive"]
[dependencies.paste]
version = "1.0.15"
[dev-dependencies.proptest]
version = "1.10"
[dev-dependencies.proptest-derive]
version = "0.8"