[package]
edition = "2021"
rust-version = "1.89"
name = "sdec-bitstream"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level bit packing primitives for the sdec codec"
documentation = "https://docs.rs/sdec-bitstream"
readme = "README.md"
keywords = [
"netcode",
"bitstream",
"bitpacking",
"snapshot",
"delta",
]
categories = [
"network-programming",
"game-development",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kplane-dev/sdec"
[lib]
name = "bitstream"
path = "src/lib.rs"
[[test]]
name = "prop_roundtrip"
path = "tests/prop_roundtrip.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1.4"