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