Source code
Revision control
Copy as Markdown
Other Tools
[package]
authors = ["Bryant Luk <code@bryantluk.com>"]
categories = ["encoding", "no-std", "no-std::no-alloc", "compression", "parser-implementations"]
description = "A library to encode and decode LEB128 compressed integers."
edition = "2021"
include = [
"src/**/*.rs",
"Cargo.toml",
"CHANGELOG.md",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
keywords = ["leb128", "encoding", "no_std", "compression"]
license = "MIT OR Apache-2.0"
name = "leb128fmt"
readme = "README.md"
rust-version = "1.56.0"
version = "0.1.0"
[features]
default = ["std"]
std = []
alloc = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]