[package]
edition = "2021"
name = "chapa"
version = "0.1.2"
authors = ["Luca Marcelli <contact@layle.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitfield structs, batteries included!"
homepage = "https://github.com/ioncodes/chapa"
documentation = "https://docs.rs/chapa"
readme = "README.md"
keywords = [
"bitfield",
"bit-manipulation",
"msb0",
"lsb0",
]
license = "MIT"
repository = "https://github.com/ioncodes/chapa"
[lib]
name = "chapa"
path = "src/lib.rs"
[[test]]
name = "test_aliases"
path = "tests/test_aliases.rs"
[[test]]
name = "test_bit_enum"
path = "tests/test_bit_enum.rs"
[[test]]
name = "test_const"
path = "tests/test_const.rs"
[[test]]
name = "test_debug"
path = "tests/test_debug.rs"
[[test]]
name = "test_extract_bits"
path = "tests/test_extract_bits.rs"
[[test]]
name = "test_lsb0"
path = "tests/test_lsb0.rs"
[[test]]
name = "test_msb0"
path = "tests/test_msb0.rs"
[[test]]
name = "test_nested"
path = "tests/test_nested.rs"
[[test]]
name = "test_readonly"
path = "tests/test_readonly.rs"
[[test]]
name = "test_width"
path = "tests/test_width.rs"
[dependencies.chapa-macros]
version = "0.1"
[dev-dependencies.trybuild]
version = "1"