mirror of
https://github.com/BLAKE3-team/BLAKE3
synced 2025-01-21 15:50:01 +01:00
Changes since 1.5.3: - Initial implementation of SIMD acceleration for the XOF (i.e. blake3::Hasher::finalize_xof). This brings long output performance into line with long input performance. Currently AVX-512-only and Unix-only. - Add build support for "gnullvm" targets (Clang on Windows). - The "zeroize" feature no longer depends on proc-macros and syn.
27 lines
709 B
INI
27 lines
709 B
INI
[package]
|
|
name = "b3sum"
|
|
version = "1.5.4"
|
|
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
|
|
description = "a command line implementation of the BLAKE3 hash function"
|
|
repository = "https://github.com/BLAKE3-team/BLAKE3"
|
|
license = "CC0-1.0 OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
neon = ["blake3/neon"]
|
|
prefer_intrinsics = ["blake3/prefer_intrinsics"]
|
|
pure = ["blake3/pure"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.25"
|
|
blake3 = { version = "1", path = "..", features = ["mmap", "rayon"] }
|
|
clap = { version = "4.0.8", features = ["derive", "wrap_help"] }
|
|
hex = "0.4.0"
|
|
rayon-core = "1.12.1"
|
|
wild = "2.0.3"
|
|
|
|
[dev-dependencies]
|
|
duct = "0.13.3"
|
|
tempfile = "3.1.0"
|