Adding upstream version 1.5.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ea696646e0
commit
b3531968df
12 changed files with 1009 additions and 0 deletions
64
Cargo.toml
Normal file
64
Cargo.toml
Normal file
|
@ -0,0 +1,64 @@
|
|||
# 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"]
|
Loading…
Add table
Add a link
Reference in a new issue