pulith-verify 0.2.0

Content verification primitives for downloaded artifacts
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 = "pulith-verify"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Content verification primitives for downloaded artifacts"
documentation = "https://github.com/anomalyco/pulith/blob/main/docs/design/verify.md"
readme = "README.md"
keywords = [
    "hash",
    "checksum",
    "verification",
    "crypto",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/anomalyco/pulith"

[features]
blake3 = [
    "dep:blake3",
    "digest/std",
]
default = ["sha256"]
sha256 = [
    "dep:sha2",
    "digest/std",
]
sha3 = [
    "dep:sha3",
    "digest/std",
]

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

[dependencies.blake3]
version = "1.8"
optional = true

[dependencies.digest]
version = "0.10"
default-features = false

[dependencies.hex]
version = "0.4"

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.sha3]
version = "0.10"
optional = true

[dependencies.thiserror]
version = "2.0.18"