[package]
edition = "2021"
name = "sparse-hash-map"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open-addressing hash map and set that stay small at low load factor"
readme = "README.md"
keywords = [
"hashmap",
"hashset",
"sparse",
"memory",
"hash",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/hey-jj/sparse-hash-map"
[lib]
name = "sparse_hash_map"
path = "src/lib.rs"
[[test]]
name = "allocator_tests"
path = "tests/allocator_tests.rs"
[[test]]
name = "heterogeneous_tests"
path = "tests/heterogeneous_tests.rs"
[[test]]
name = "policy_tests"
path = "tests/policy_tests.rs"
[[test]]
name = "sparse_map_tests"
path = "tests/sparse_map_tests.rs"
[[test]]
name = "sparse_set_tests"
path = "tests/sparse_set_tests.rs"
[dependencies]