ph 0.11.0

The library of data structures based on perfect hashing.
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 = "2021"
name = "ph"
version = "0.11.0"
build = false
include = [
    "**/*.rs",
    "Cargo.toml",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The library of data structures based on perfect hashing."
documentation = "https://docs.rs/ph"
readme = "README.md"
keywords = [
    "perfect",
    "hashing",
    "mphf",
    "map",
    "dictionary",
]
categories = [
    "data-structures",
    "algorithms",
    "compression",
    "science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/beling/bsuccinct-rs"

[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",
    "epserde",
]
wyhash = ["seedable_hash/wyhash"]
xxhash-rust = ["seedable_hash/xxhash-rust"]

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

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

[dependencies.arrayvec]
version = "0.7"

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

[dependencies.bitm]
version = "0.5"

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

[dependencies.ciborium]
version = "0.2"
optional = true

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

[dependencies.dyn_size_of]
version = "0.4"

[dependencies.epserde]
version = "0.11"
features = ["derive"]
optional = true

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

[dependencies.rayon]
version = "1.5"

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

[dependencies.sux]
version = "0.10"
features = ["epserde"]
optional = true

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

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

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