[dependencies.serde]
features = ["serde_derive"]
optional = true
version = "1"
[features]
alloc = []
default = []
std = []
[package]
authors = ["Michael Lodder <redmike7@gmail.com>"]
categories = ["compression", "encoding", "no-std"]
description = "Uint is a convenience wrapper for zig-zag encoding integers to byte sequences.\n\nThis allows better compression since the majority of numbers are quite small resulting\nin 1 or 2 bytes in the most common case vs 4 for 32-bit numbers or 8 for 64-bit numbers.\n\nThis also permits the user to not have to think about which integer type is the most efficient to compress.\n"
documentation = "https://docs.rs/uint-zigzag"
edition = "2021"
homepage = "https://github.com/mikelodder7/uint"
license = "Apache-2.0 OR MIT"
name = "uint-zigzag"
readme = "README.md"
repository = "https://github.com/mikelodder7/uint"
resolver = "2"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]