[package]
edition = "2021"
rust-version = "1.70"
name = "matrix256"
version = "1.0.3"
authors = ["wolfy"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust reference implementation of matrix256v1 — a SHA-256 fingerprint over the (path, size) records of a rooted filesystem tree."
readme = "README.md"
keywords = [
"sha256",
"fingerprint",
"filesystem",
"hash",
"matrix256",
]
categories = [
"filesystem",
"cryptography",
]
license = "Apache-2.0"
repository = "https://github.com/shitwolfymakes/matrix256-rs"
[lib]
name = "matrix256"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[dependencies.sha2]
version = "0.10"
[dependencies.unicode-normalization]
version = "0.1"
[profile.release]
lto = "thin"
codegen-units = 1