modular-bitfield-msb 0.11.2

Allows to easily define bitfield types with modular building blocks. MSB-first version.
Documentation
[package]
name = "modular-bitfield-msb"
version = "0.11.2"
edition = "2018"
authors = ["Robin Freyler <robinfreyler@web.de>", "Cirrus <cirrus.neptune@protonmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"

repository = "https://github.com/CirrusNeptune/modular-bitfield-msb"
documentation = "https://docs.rs/modular-bitfield-msb"
description = "Allows to easily define bitfield types with modular building blocks. MSB-first version."
categories = ["data-structures", "no-std"]
keywords   = ["bitfield", "bit", "bitfields"]

autotests = false

[dev-dependencies]
trybuild = "1.0"
criterion = "0.3"
bitfield = "0.13"

[[test]]
name = "tests"
path = "tests/progress.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[[bench]]
name = "cmp_handwritten"
path = "benches/cmp_handwritten.rs"
harness = false

[[bench]]
name = "cmp_bitfield_crate"
path = "benches/cmp_bitfield_crate.rs"
harness = false

[[bin]]
name = "playground"
path = "playground.rs"

[dependencies]
modular-bitfield-msb-impl = { path = "impl", version = "0.11.2" }
static_assertions = "1.1"

[profile.bench]
codegen-units = 1

[workspace]
members = [
    "impl"
]