# 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 = "hyperlog_simd" version = "0.2.0" authors = ["Brandon McMillan "] description = "A SIMD optimized implementation of the HLL and HLL++ algorithms" documentation = "https://docs.rs/hyperlog-simd" readme = "README.md" license = "MIT" repository = "https://github.com/bcmcmill/hyperlog-simd" [[example]] name = "hll" path = "examples/hll.rs" [[example]] name = "plusplus" path = "examples/plusplus.rs" [[bench]] name = "plusplus" path = "benches/plusplus.rs" harness = false [[bench]] name = "hll" path = "benches/hll.rs" harness = false [dependencies.base64] version = "0.21.4" optional = true [dependencies.lz4] version = "1.24.0" optional = true [dependencies.seahash] version = "4.1.0" [dependencies.serde] version = "1.0.188" features = ["derive"] optional = true [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.nanorand] version = "0.7.0" [dev-dependencies.serde_json] version = "1.0.107" [features] default = ["serde_support"] serde_support = [ "base64", "lz4", "serde/derive", ] [target."cfg(target_arch = \"aarch64\")".dependencies.packed_simd] version = "0.3.9" features = [ "libcore_neon", "into_bits", ] [target."cfg(target_arch = \"x86_64\")".dependencies.packed_simd] version = "0.3.9" features = ["into_bits"]