# 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" rust-version = "1.67.1" name = "line_cardinality" version = "2.0.0" authors = ["Michael Ripley "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "High performance line cardinality counts and estimates" readme = "README.md" keywords = [ "count", "unique", "cardinality", ] categories = [] license = "GPL-3.0-or-later" repository = "https://github.com/zkxs/cuniq" [lib] name = "line_cardinality" path = "src/lib.rs" [[bench]] name = "benches" path = "benches/benches.rs" harness = false required-features = ["bench"] [dependencies.ahash] version = "0.8" optional = true default-features = false [dependencies.bstr] version = "1" [dependencies.cfg-if] version = "1" [dependencies.hashbrown] version = "0.14" default-features = false [dependencies.memchr] version = "2" optional = true [dependencies.memmap2] version = "0.9" optional = true [dev-dependencies.criterion] version = "0.5" [features] bench = [ "ahash", "memmap", "memchr", "file", ] compile-time-rng = ["ahash/compile-time-rng"] default = [ "ahash", "compile-time-rng", "memchr", ] file = [] hash-only = [] memmap = [ "dep:memmap2", "memchr", ]