# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "uint-zigzag" version = "0.2.1" authors = ["Michael Lodder "] description = """ Uint is a convenience wrapper for zig-zag encoding integers to byte sequences. This allows better compression since the majority of numbers are quite small resulting in 1 or 2 bytes in the most common case vs 4 for 32-bit numbers or 8 for 64-bit numbers. This also permits the user to not have to think about which integer type is the most efficient to compress. """ homepage = "https://github.com/mikelodder7/uint" documentation = "https://docs.rs/uint-zigzag" readme = "README.md" categories = [ "compression", "encoding", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/mikelodder7/uint" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.core2] version = "0.4" default-features = false [dependencies.serde] version = "1" features = ["serde_derive"] optional = true [features] alloc = ["core2/alloc"] default = [] std = ["core2/std"]