[package] name = "stream-vbyte" version = "0.4.1" description = "Compress and decompress numbers efficiently in the Stream VByte encoding" authors = ["Marshall Pierce "] homepage = "https://bitbucket.org/marshallpierce/stream-vbyte-rust" repository = "https://bitbucket.org/marshallpierce/stream-vbyte-rust" readme = 'README.md' keywords = ["varint", "stream-vbyte"] categories = ["encoding", "compression"] license-file = "LICENSE.txt" edition = "2021" rust-version = "1.64.0" [dev-dependencies] rand = "0.8.5" clap = "4.3.0" criterion = "0.4.0" [profile.bench] # Useful for better disassembly when using `perf record` and `perf annotate` debug = true [[bench]] name = "benchmarks" harness = false [features] default = [] # Expose SIMD features x86_ssse3 = [] x86_sse41 = [] [package.metadata.docs.rs] all-features = true rustc-args = ["-C", "target-feature=+ssse3,+sse4.1"]