1
0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2026-03-08 00:06:20 +01:00
BLAKE3/b3sum/Cargo.toml
Jack O'Connor 00c2ea974d version 1.8.0
Changes since 1.7.0:
- The Rust crate now provides the `blake3::hazmat` module, which
  replaces the undocumented and now deprecated `blake3::guts` module.
  This is intended for advanced use cases like Bao and Iroh, which need
  to manipulate chunk and subtree "chaining values" directly. See the
  module docs for more: https://docs.rs/blake3/1.8.0/blake3/hazmat
2025-03-30 22:00:46 -07:00

27 lines
713 B
INI

[package]
name = "b3sum"
version = "1.8.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.8.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"