implhm 1.0.0

Simplified library of collision-handling HashMaps
Documentation
[package]
name = "implhm"
version = "1.0.0"
edition = "2021"

license = "MIT"
readme = "README.md"
repository = "https://github.com/splurf/implhm"
authors = ["Evan Schwartzentruber <evandotschwartzentruber@gmail.com>"]
description = "Simplified library of collision-handling HashMaps"
keywords = ["hashmap", "hash", "map", "collision"]
categories = ["data-structures"]

[features]
default = ["separate-chaining"]
enabled = []

separate-chaining = ["enabled"]
open-addressing = []

double-hashing = ["open-addressing"]
linear-probing = ["open-addressing"]
quadratic-probing = ["open-addressing"]

separate-chaining-test = ["separate-chaining", "test"]
open-addressing-test = ["open-addressing", "test"]
test = []

[dependencies]