blob: fe60aa7a3c2b51f60d9a068ff7394081e5328421 [file] [log] [blame] [edit]
# 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 = "blake3"
version = "1.5.2"
authors = [
"Jack O'Connor <[email protected]>",
"Samuel Neves",
]
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",
]
[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.3.0"
[dependencies.digest]
version = "0.10.1"
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.serde_bytes]
version = "0.11.15"
optional = true
[dependencies.zeroize]
version = "1"
features = ["zeroize_derive"]
optional = true
default-features = false
[dev-dependencies.ciborium]
version = "0.2.2"
[dev-dependencies.hex]
version = "0.4.2"
[dev-dependencies.hmac]
version = "0.12.0"
[dev-dependencies.page_size]
version = "0.6.0"
[dev-dependencies.rand]
version = "0.8.0"
[dev-dependencies.rand_chacha]
version = "0.3.0"
[dev-dependencies.serde_json]
version = "1.0.107"
[dev-dependencies.tempfile]
version = "3.8.0"
[build-dependencies.cc]
version = "1.0.4"
[features]
default = ["std"]
mmap = [
"std",
"dep:memmap2",
]
neon = []
no_avx2 = []
no_avx512 = []
no_neon = []
no_sse2 = []
no_sse41 = []
prefer_intrinsics = []
pure = []
rayon = [
"dep:rayon-core",
"std",
]
serde = [
"dep:serde",
"dep:serde_bytes",
]
std = []
traits-preview = ["dep:digest"]
zeroize = [
"dep:zeroize",
"arrayvec/zeroize",
]