[package]
edition = "2021"
name = "blazehash"
version = "0.1.0"
authors = ["Albert Hui <security-ronin@users.noreply.github.com>"]
build = false
exclude = [
"target/",
".github/",
".serena/",
"docs/",
"wix/",
".pre-commit-config.yaml",
"renovate.json",
"PACKAGING.md",
"Makefile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Forensic file hasher — hashdeep for the modern era, BLAKE3 by default"
readme = "README.md"
keywords = [
"hash",
"forensics",
"blake3",
"hashdeep",
"dfir",
]
categories = [
"command-line-utilities",
"cryptography",
]
license = "MIT"
repository = "https://github.com/SecurityRonin/blazehash"
[package.metadata.deb]
assets = [[
"target/release/blazehash",
"usr/bin/",
"755",
]]
extended-description = "blazehash is a forensic file hasher and drop-in superset of hashdeep. It defaults to BLAKE3 for speed, supports 8 hash algorithms (BLAKE3, SHA-256, SHA-512, SHA3-256, SHA-1, MD5, Tiger, Whirlpool), and provides multithreaded parallel hashing with memory-mapped I/O. Features include audit mode, piecewise hashing, resume support, and CSV/JSON/JSONL output formats."
maintainer = "SecurityRonin <security-ronin@users.noreply.github.com>"
priority = "optional"
section = "utils"
[lib]
name = "blazehash"
path = "src/lib.rs"
[[bin]]
name = "blazehash"
path = "src/main.rs"
[[test]]
name = "algorithm_tests"
path = "tests/algorithm_tests.rs"
[[test]]
name = "audit_tests"
path = "tests/audit_tests.rs"
[[test]]
name = "benchmark_tests"
path = "tests/benchmark_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "format_tests"
path = "tests/format_tests.rs"
[[test]]
name = "hash_tests"
path = "tests/hash_tests.rs"
[[test]]
name = "manifest_tests"
path = "tests/manifest_tests.rs"
[[test]]
name = "piecewise_tests"
path = "tests/piecewise_tests.rs"
[[test]]
name = "resume_tests"
path = "tests/resume_tests.rs"
[[test]]
name = "walk_tests"
path = "tests/walk_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.digest]
version = "0.10"
[dependencies.hex]
version = "0.4"
[dependencies.md-5]
version = "0.10"
[dependencies.memmap2]
version = "0.9"
[dependencies.rayon]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha1]
version = "0.10"
features = ["oid"]
[dependencies.sha2]
version = "0.10"
features = ["oid"]
[dependencies.sha3]
version = "0.10"
[dependencies.tiger]
version = "0.2"
[dependencies.walkdir]
version = "2"
[dependencies.whirlpool]
version = "0.10"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"