| 1 | [package] |
| 2 | name = "bitstream-io" |
| 3 | description = "Library for reading/writing un-aligned values from/to streams in big-endian and little-endian formats." |
| 4 | keywords = ["bitstream" , "endian" , "big-endian" , "little-endian" , "binary" ] |
| 5 | version = "2.6.0" |
| 6 | authors = ["Brian Langenberger <bjl@usa.net>" ] |
| 7 | license = "MIT/Apache-2.0" |
| 8 | documentation = "https://docs.rs/bitstream-io/" |
| 9 | homepage = "https://github.com/tuffy/bitstream-io" |
| 10 | repository = "https://github.com/tuffy/bitstream-io" |
| 11 | edition = "2018" |
| 12 | rust-version = "1.79" |
| 13 | |
| 14 | [dependencies] |
| 15 | core2 = {version = "0.4" , optional = true, default-features = false, features = ["alloc" ]} |
| 16 | |
| 17 | [features] |
| 18 | std = [] |
| 19 | default = ["std" ] |
| 20 | alloc = ["core2" ] |
| 21 | |