[package]
edition = "2021"
name = "media-codec-bitstream"
version = "0.1.0"
authors = ["Zhou Wei <zhouwei@ehom.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library for reading and writing bits with Exp-Golomb coding support"
homepage = "https://github.com/rust-media"
documentation = "https://docs.rs/media-codec-bitstream"
readme = false
keywords = [
"bitstream",
"exp-golomb",
]
categories = ["multimedia"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-media/media-rs"
[lib]
name = "media_codec_bitstream"
path = "src/lib.rs"
[[test]]
name = "reader"
path = "tests/reader.rs"
[dependencies.bitstream-io]
version = "4.9"