libvctrl_sha512 0.2.0

Zero-dependency SHA512, HMAC-SHA512, HKDF-SHA512, and optional SHA384
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "libvctrl_sha512"
version = "0.2.0"
authors = ["mroczect"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-dependency SHA512, HMAC-SHA512, HKDF-SHA512, and optional SHA384"
readme = "README.md"
keywords = [
    "cryptography",
    "sha512",
    "hmac",
    "hkdf",
    "no-std",
]
categories = [
    "cryptography",
    "algorithms",
    "no-std",
]
license = "ISC"
repository = "https://github.com/mroczect/libvctrl"
resolver = "2"

[features]
default = ["sha384"]
opt_size = []
sha384 = []

[lib]
name = "libvctrl_sha512"
path = "src/lib.rs"

[[test]]
name = "sha_tests"
path = "tests/sha_tests.rs"

[[bench]]
name = "sha384_bench"
path = "benches/sha384_bench.rs"
harness = false
required-features = ["sha384"]

[[bench]]
name = "sha512_bench"
path = "benches/sha512_bench.rs"
harness = false

[dependencies]

[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false