1
0
Fork 0
rust-sha256/Cargo.toml

65 lines
1.3 KiB
TOML
Raw Permalink Normal View History

# 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 = "2018"
name = "sha256"
version = "1.5.0"
authors = ["baoyachi <liaoymxsdl@gmail.com>"]
description = "sha256 crypto digest"
readme = "README.md"
keywords = [
"sha256",
"hash",
"digest",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/baoyachi/sha256-rs"
[dependencies.async-trait]
version = "0.1.68"
[dependencies.bytes]
version = "1.4.0"
[dependencies.hex]
version = "0.4.2"
[dependencies.openssl]
version = "0.10.54"
optional = true
default-features = false
[dependencies.sha2]
version = "0.10.6"
default-features = false
[dependencies.tokio]
version = "1.28.2"
features = [
"io-util",
"fs",
]
optional = true
[dev-dependencies.tokio]
version = "1.28.2"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4.2"
[features]
async = ["tokio"]
default = ["async"]
native_openssl = ["openssl"]