blake3 1.8.4

the BLAKE3 hash function
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 = "blake3"
version = "1.8.4"
authors = [
    "Jack O'Connor <oconnor663@gmail.com>",
    "Samuel Neves",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "the BLAKE3 hash function"
documentation = "https://docs.rs/blake3"
readme = "README.md"
license = "CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/BLAKE3-team/BLAKE3"

[package.metadata.docs.rs]
features = [
    "mmap",
    "rayon",
    "serde",
    "zeroize",
]

[features]
default = ["std"]
digest = ["dep:digest"]
mmap = [
    "std",
    "dep:memmap2",
]
neon = []
no_avx2 = []
no_avx512 = []
no_neon = []
no_sse2 = []
no_sse41 = []
prefer_intrinsics = []
pure = []
rayon = ["dep:rayon-core"]
std = ["constant_time_eq/std"]
traits-preview = ["dep:digest"]
wasm32_simd = []
zeroize = [
    "dep:zeroize",
    "arrayvec/zeroize",
]

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

[[bench]]
name = "bench"
path = "benches/bench.rs"

[dependencies.arrayref]
version = "0.3.5"

[dependencies.arrayvec]
version = "0.7.4"
default-features = false

[dependencies.cfg-if]
version = "1.0.0"

[dependencies.constant_time_eq]
version = "0.4.2"
default-features = false

[dependencies.digest]
version = "0.11.2"
features = ["mac"]
optional = true

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

[dependencies.rayon-core]
version = "1.12.1"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false

[dependencies.zeroize]
version = "1"
optional = true
default-features = false

[dev-dependencies.chacha20]
version = "0.10.0"

[dev-dependencies.ciborium]
version = "0.2.2"

[dev-dependencies.hex]
version = "0.4.2"

[dev-dependencies.hmac]
version = "0.13.0"

[dev-dependencies.page_size]
version = "0.6.0"

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

[dev-dependencies.serde_json]
version = "1.0.107"

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

[build-dependencies.cc]
version = "1.1.12"

[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies.cpufeatures]
version = "0.3.0"