mirror of
https://github.com/BLAKE3-team/BLAKE3
synced 2025-01-21 15:50:01 +01:00
Changes since 0.3.0:
- The x86 build now automatically falls back to "pure" Rust intrinsics,
under either of two possible conditions:
1. The `cc` crate fails to invoke a C compiler at all, indicating that
nothing of the right name (e.g. "cc" or "$CC" on Unix) is installed.
2. The `cc` crate detects that the compiler doesn't support AVX-512
flags, usually because it's too old.
The end result should be that most callers successfully build the
assembly implementations, and that callers who can't build those see a
warning but not an error. (And note that Cargo suppresses warnings for
non-path depencies.)
28 lines
678 B
INI
28 lines
678 B
INI
[package]
|
|
name = "b3sum"
|
|
version = "0.3.1"
|
|
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]
|
|
neon = ["blake3/neon"]
|
|
prefer_intrinsics = ["blake3/prefer_intrinsics"]
|
|
pure = ["blake3/pure"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.25"
|
|
blake3 = { version = "0.3", 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"
|