[package]
edition = "2024"
rust-version = "1.88.0"
name = "sha2-const"
version = "0.1.3"
authors = ["Saleem Rashid <dev@saleemrashid.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "const fn implementation of the SHA-2 family of hash functions"
homepage = "https://github.com/saleemrashid/sha2-const"
documentation = "https://docs.rs/sha2-const"
readme = "README.md"
keywords = ["crypto"]
categories = [
"cryptography",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/saleemrashid/sha2-const"
[lib]
name = "sha2_const"
path = "src/lib.rs"
[[test]]
name = "proptest"
path = "tests/proptest.rs"
[[test]]
name = "test_vectors"
path = "tests/test_vectors.rs"
[dependencies]
[dev-dependencies.hex]
version = "0.4.3"
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.sha2]
version = "0.11.0"