1[package] 2name = "bitreader" 3version = "0.3.6" 4authors = ["Ilkka Rauta <ilkka.rauta@gmail.com>"] 5 6description = """ 7BitReader helps reading individual bits from a slice of bytes. 8 9You can read "unusual" numbers of bits from the byte slice, for example 13 bits 10at once. The reader internally keeps track of position within the buffer. 11""" 12 13documentation = "https://docs.rs/bitreader" 14homepage = "https://github.com/irauta/bitreader" 15repository = "https://github.com/irauta/bitreader" 16 17keywords = ["bit", "bits", "bitstream"] 18 19license = "MIT OR Apache-2.0" 20 21[dependencies] 22cfg-if = "1" 23 24[features] 25std = [] 26 27default = ["std"] 28