# 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 = "hash-iter" version = "1.1.0" authors = ["Victor Farazdagi "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Iterator producing sequence of hash values for a given input (using double hashing technique)" homepage = "https://github.com/farazdagi/hash-iter" documentation = "https://docs.rs/hash-iter" readme = "README.md" keywords = [ "double-hashing", "bloom", "hashing", "open-addressing", "hash-table", ] categories = [ "algorithms", "data-structures", ] license = "MIT" repository = "https://github.com/farazdagi/hash-iter" [lib] name = "hash_iter" path = "src/lib.rs" [[test]] name = "double_hash" path = "tests/double_hash.rs" [dependencies.num-traits] version = "0.2" [dependencies.xxhash-rust] version = "0.8" features = [ "xxh3", "const_xxh3", ]