You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
624 B

[package]
name = "bitreader"
version = "0.3.6"
authors = ["Ilkka Rauta <ilkka.rauta@gmail.com>"]
description = """
BitReader helps reading individual bits from a slice of bytes.
You can read "unusual" numbers of bits from the byte slice, for example 13 bits
at once. The reader internally keeps track of position within the buffer.
"""
documentation = "https://docs.rs/bitreader"
homepage = "https://github.com/irauta/bitreader"
repository = "https://github.com/irauta/bitreader"
keywords = ["bit", "bits", "bitstream"]
license = "MIT OR Apache-2.0"
[dependencies]
cfg-if = "1"
[features]
std = []
default = ["std"]