mirror of
https://github.com/BLAKE3-team/BLAKE3
synced 2025-01-21 15:50:01 +01:00
Changes since version 0.2.2: - Bug fix: Commit 13556be fixes a crash on Windows when using the SSE4.1 assembly implementation (--features=c, set by default for b3sum). This is undefined behavior and therefore a potential security issue. - b3sum now supports the --num-threads flag. - The C API now includes a blake3_hasher_finalize_seek() function, which returns output from any position in the extended output stream. - Build fix: Commit 5fad419 fixes a compiler error in the AVX-512 C intrinsics implementation targeting the Windows GNU ABI.
28 lines
643 B
INI
28 lines
643 B
INI
[package]
|
|
name = "b3sum"
|
|
version = "0.2.3"
|
|
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"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["c"]
|
|
c = ["blake3/c"]
|
|
c_neon = ["blake3/c_neon"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.25"
|
|
blake3 = { version = "0.2", path = "..", features = ["rayon"] }
|
|
clap = { version = "2.33.0", default-features = false }
|
|
hex = "0.4.0"
|
|
memmap = "0.7.0"
|
|
rayon = "1.2.1"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "0.12.0"
|
|
duct = "0.13.3"
|
|
tempfile = "3.1.0"
|