rapidhash 4.3.0

An extremely fast, high quality, platform-independent hashing algorithm.
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"
rust-version = "1.71.0"
name = "rapidhash"
version = "4.3.0"
authors = ["Liam Gray <gmail@liamg.me>"]
build = false
exclude = [
    "Cargo.lock",
    "fuzz",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An extremely fast, high quality, platform-independent hashing algorithm."
documentation = "https://docs.rs/rapidhash"
readme = "README.md"
keywords = [
    "hash",
    "hasher",
    "no-std",
    "rapidhash",
]
categories = [
    "algorithms",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hoxxep/rapidhash"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
nightly = []
rand = [
    "dep:rand",
    "std",
]
rng = ["dep:rand_core"]
std = []
unsafe = []

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

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

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

[dependencies.rand]
version = "0.9"
optional = true

[dependencies.rand_core]
version = "0.9"
optional = true
default-features = false

[dependencies.rustversion]
version = "1.0"

[dev-dependencies.assert_cmd]
version = "2.1.1"

[dev-dependencies.rand]
version = "0.9.0"

[dev-dependencies.tempfile]
version = "3.14.0"