[package]
edition = "2021"
name = "async-hash"
version = "0.6.0"
authors = ["code@tinychain.net"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Traits and helper functions for SHA256 hashing of async data types"
readme = "README.md"
keywords = [
"sha256",
"hash",
"asynchronous",
"stream",
]
categories = ["cryptography"]
license = "Apache-2.0"
repository = "https://github.com/haydnv/async-hash.git"
[features]
all = ["smallvec"]
[lib]
name = "async_hash"
path = "src/lib.rs"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.num_cpus]
version = "1.16"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1.11"
optional = true