# 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 = "geo_filters" version = "0.1.0" description = "Geometric filters for set cardinality estimation." readme = "README.md" keywords = [ "probabilistic", "algorithm", "cardinality", "estimation", ] categories = [ "algorithms", "data-structures", "mathematics", "science", ] license = "MIT" repository = "https://github.com/github/rust-gems" [lib] crate-type = [ "lib", "staticlib", ] bench = false [[bin]] name = "accuracy" path = "evaluation/accuracy.rs" test = false bench = false required-features = ["evaluation"] [[bench]] name = "performance" path = "evaluation/performance.rs" harness = false required-features = ["evaluation"] [dependencies.clap] version = "4" features = ["derive"] optional = true [dependencies.fnv] version = "1.0" [dependencies.hyperloglogplus] version = "0.4" optional = true [dependencies.itertools] version = "0.12" [dependencies.once_cell] version = "1.18" [dependencies.rand] version = "0.8" optional = true [dependencies.rayon] version = "1.7" optional = true [dependencies.regex] version = "1" optional = true [dev-dependencies.criterion] version = "0.5" [dev-dependencies.rand] version = "0.8" [dev-dependencies.rand_chacha] version = "0.3" [dev-dependencies.rayon] version = "1.7" [features] default = [] evaluation = [ "dep:clap", "dep:hyperloglogplus", "dep:rand", "dep:rayon", "dep:regex", ]