# 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 = "bitpacking" version = "0.9.2" authors = ["Paul Masurel "] description = "Fast integer compression/decompression via SIMD bit-packing. Port of simdcomp to rust." homepage = "https://github.com/quickwit-oss/bitpacking" readme = "README.md" keywords = [ "integer", "compression", "bitpacking", ] license = "MIT" repository = "https://github.com/quickwit-oss/bitpacking" [[bench]] name = "bitpacking_bench" path = "src/bitpacking_bench.rs" harness = false [dependencies.crunchy] version = "0.2" [dev-dependencies.criterion] version = "0.3" [dev-dependencies.proptest] version = "1.0.0" [dev-dependencies.rand] version = "0.8" [features] bitpacker1x = [] bitpacker4x = [] bitpacker8x = [] default = [ "bitpacker1x", "bitpacker4x", "bitpacker8x", ]