# 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 = "implhm" version = "1.0.8" authors = ["Evan Schwartzentruber "] description = "Simplified library of collision-handling HashMaps" readme = "README.md" keywords = [ "hashmap", "hash", "map", "collision", ] categories = ["data-structures"] license = "MIT" repository = "https://github.com/splurf/implhm" resolver = "2" [dependencies] [features] default = ["separate-chaining"] double-hashing = ["open-addressing"] double-hashing-test = [ "double-hashing", "open-addressing-test", ] enabled = [] linear-probing = ["open-addressing"] linear-probing-test = [ "linear-probing", "open-addressing-test", ] open-addressing = ["enabled"] open-addressing-test = [ "open-addressing", "test", ] quadratic-probing = ["open-addressing"] quadratic-probing-test = [ "quadratic-probing", "open-addressing-test", ] separate-chaining = ["enabled"] separate-chaining-test = [ "separate-chaining", "test", ] test = []