ph 0.9.5

The library of data structures based on perfect hashing.
Documentation
[[bench]]
harness = false
name = "fmph"
path = "benches/fmph.rs"

[dependencies.arrayvec]
version = "0.7"

[dependencies.binout]
version = ">=0.2"

[dependencies.bitm]
version = "0.5"

[dependencies.cacheline-ef]
optional = true
version = "1.1.0"

[dependencies.cseq]
optional = true
version = "0.1"

[dependencies.dyn_size_of]
version = "0.4"

[dependencies.mem_dbg]
optional = true
version = "0.3"

[dependencies.rayon]
version = "1.5"

[dependencies.seedable_hash]
default-features = false
version = "0.2"

[dependencies.sux]
optional = true
version = "0.6"

[dependencies.voracious_radix_sort]
features = ["voracious_multithread"]
version = "1.2.0"

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

[features]
cacheline-ef = ["dep:cacheline-ef", "mem_dbg"]
default = ["aligned-vec", "sux"]
fnv = ["seedable_hash/fnv"]
gxhash = ["seedable_hash/gxhash"]
rapidhash = ["seedable_hash/rapidhash"]
sip13 = ["seedable_hash/sip13"]
sux = ["dep:sux", "mem_dbg"]
wyhash = ["seedable_hash/wyhash"]
xxhash-rust = ["seedable_hash/xxhash-rust"]

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

[package]
authors = ["Piotr Beling <piotr.beling@wmii.uni.lodz.pl>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "algorithms", "compression", "science"]
description = "The library of data structures based on perfect hashing."
documentation = "https://docs.rs/ph"
edition = "2021"
include = ["**/*.rs", "Cargo.toml", "README.md"]
keywords = ["perfect", "hashing", "mphf", "map", "dictionary"]
license = "MIT OR Apache-2.0"
name = "ph"
readme = "README.md"
repository = "https://github.com/beling/bsuccinct-rs"
version = "0.9.5"

[target.'cfg(target_pointer_width = "32")'.dependencies.aligned-vec]
optional = true
version = "0.6"