[package]
edition = "2024"
name = "exbytes"
version = "0.1.2"
authors = ["Boris Kaul <localvoid@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Extensions for `bytes::Bytes` and `bytes::BytesMut` to support variable-length integer encoding (LEB128/ZigZag)"
homepage = "https://github.com/localvoid/exbytes"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/localvoid/exbytes"
[lib]
name = "exbytes"
path = "src/lib.rs"
[[test]]
name = "var"
path = "tests/var.rs"
[dependencies.bytes]
version = "1"
[lints.clippy]
collapsible_else_if = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
dbg_macro = "warn"
empty_structs_with_brackets = "warn"
get_unwrap = "warn"
print_stderr = "warn"
print_stdout = "warn"
rest_pat_in_fully_bound_structs = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_safety_comment = "warn"
unused_result_ok = "warn"