1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2026-03-07 15:46:24 +01:00
BLAKE3/b3sum/Cargo.toml
Jack O'Connor a9e92981a5 version 1.7.0
Changes since 1.6.1:
- The C implementation has gained multithreading support, based on
  Intel's oneTBB library. This works similarly to the Rayon-based
  multithreading used in the Rust implementation. See c/README.md for
  details. Contributed by @silvanshade (#445).
- The Rust implementation has gained a WASM SIMD backend, gated by the
  `wasm32_simd` Cargo feature. Under Wasmtime on my laptop, this is a 6x
  performance improvement for large inputs. This backend is currently
  Rust-only. Contributed by @monoid (#341).
- Fixed cross-compilation builds targeting Windows with cargo-xwin.
  Contributed by @Sporif and @toothbrush7777777 (#230).
- Added `b3sum --tag`, which changes the output format. This is for
  compatibility with GNU checksum tools (which use the same flag) and
  BSD checksum tools (which use the output format this flag turns on).
  Contributed by @leahneukirchen (#453) and @dbohdan (#430).
2025-03-18 11:09:40 -07:00

27 lines
713 B
INI

[package]
name = "b3sum"
version = "1.7.0"
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.7.0", 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"