axhash 0.1.0

Fast non-cryptographic hash function for Rust with no_std support and strong HashMap performance.
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 = "axhash"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast non-cryptographic hash function for Rust with no_std support and strong HashMap performance."
readme = "README.md"
keywords = [
    "hash",
    "hashing",
    "performance",
    "no_std",
    "non-cryptographic",
]
categories = [
    "algorithms",
    "no-std",
]
license = "MIT"
repository = "https://github.com/robby031/axhash"

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

[[bin]]
name = "axhash"
path = "src/main.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "hashmap_usage"
path = "examples/hashmap_usage.rs"

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

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

[dependencies]

[dev-dependencies.ahash]
version = "0.8.12"

[dev-dependencies.foldhash]
version = "0.2.0"

[dev-dependencies.rapidhash]
version = "4.4.1"

[dev-dependencies.wyhash-final4]
version = "0.2.2"

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

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