compact-dict 0.1.1

A highly customizable, open-addressing dictionary in Rust.
Documentation
# 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 = "2024"
name = "compact-dict"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A highly customizable, open-addressing dictionary in Rust."
readme = "README.md"
keywords = [
    "hashmap",
    "dictionary",
    "simd",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/gustawdaniel/compact-dict"

[features]
rkyv = ["dep:rkyv"]

[lib]
name = "compact_dict"
path = "src/lib.rs"

[[test]]
name = "rkyv_tests"
path = "tests/rkyv_tests.rs"

[[bench]]
name = "dict_bench"
path = "benches/dict_bench.rs"
harness = false

[[bench]]
name = "diverse_bench"
path = "benches/diverse_bench.rs"
harness = false

[[bench]]
name = "workload_bench"
path = "benches/workload_bench.rs"
harness = false

[dependencies.ahash]
version = "0.8"

[dependencies.rkyv]
version = "0.7"
features = ["default"]
optional = true

[dependencies.rustc-hash]
version = "1.1"

[dependencies.wide]
version = "0.7.33"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.fxhash]
version = "0.2"

[dev-dependencies.hashbrown]
version = "0.14"

[dev-dependencies.indexmap]
version = "2.13.0"

[profile.bench]
opt-level = 3
lto = true
codegen-units = 1

[profile.release]
opt-level = 3
lto = true
codegen-units = 1