[package]
edition = "2024"
name = "flows-hash"
version = "0.0.6"
authors = ["Arto Bendiken"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Building blocks for flow-based cryptographic hashing."
homepage = "https://flows.rs"
readme = "README.md"
keywords = [
"fbp",
"flow",
"dataflow",
"async",
]
categories = [
"asynchronous",
"concurrency",
"network-programming",
"no-std",
]
license = "Unlicense"
repository = "https://github.com/artob/flows.rs"
resolver = "2"
[package.metadata.readme]
title = "Flows.rs: Cryptographic Hashing"
[features]
all = []
blake3 = []
default = [
"all",
"std",
]
md5 = ["dep:md-5"]
sha1 = ["dep:sha1"]
sha2 = ["dep:sha2"]
std = ["async-flow/std"]
unstable = []
[lib]
name = "flows_hash"
path = "src/lib.rs"
[dependencies.async-flow]
version = "0.1.1"
features = ["tokio"]
default-features = false
[dependencies.md-5]
version = "0.10"
optional = true
default-features = false
[dependencies.sha1]
version = "0.10"
optional = true
default-features = false
[dependencies.sha2]
version = "0.10"
optional = true
default-features = false
[target.'cfg(not(target_family = "wasm"))'.dependencies]
[target.'cfg(target_family = "wasm")'.dependencies]