big-hash 0.2.0

Compute MD5, SHA256, and SHA512 hashes of data through the std::hash API.
Documentation
[[example]]
name = "example"
required-features = ["hash-md5", "hash-sha256", "hash-sha512"]
[dependencies.hmac-sha256]
optional = true
version = "0.1"

[dependencies.hmac-sha512]
optional = true
version = "0.1.6"

[dependencies.md5]
default-features = false
optional = true
version = "0.7"

[features]
default = ["hash-md5", "hash-sha256", "hash-sha512"]
hash-md5 = ["md5"]
hash-sha256 = ["hmac-sha256"]
hash-sha512 = ["hmac-sha512"]

[package]
authors = ["Phoenix Kahlo <kahlo.phoenix@gmail.com>"]
description = "Compute MD5, SHA256, and SHA512 hashes of data through the std::hash API."
edition = "2018"
license-file = "LICENSE.md"
name = "big-hash"
readme = "README.md"
repository = "https://github.com/gretchenfrage/big-hash"
version = "0.2.0"