hashstream 0.1.0

A simple utility to hash stdin and return results on stdout
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 = "hashstream"
version = "0.1.0"
authors = ["David Senk"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple utility to hash stdin and return results on stdout"
homepage = "https://github.com/davidsenk/hashstream"
readme = "README.md"
keywords = [
    "hash",
    "console",
    "cli",
    "stream",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/davidsenk/hashstream"

[features]
default = []
nobin = []

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

[[bin]]
name = "hashstream"
path = "src/main.rs"

[dependencies.blake2]
version = "0.10.6"

[dependencies.blake3]
version = "1.8.2"

[dependencies.clap]
version = "4.5.40"
features = ["derive"]

[dependencies.crc]
version = "3.3.0"

[dependencies.md-5]
version = "0.10.6"

[dependencies.sha1]
version = "0.10.6"

[dependencies.sha2]
version = "0.10.9"

[dependencies.sha3]
version = "0.10.8"

[lints.rust]
unsafe_code = "forbid"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"