Merging upstream version 1.6.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
2a5f2189f0
commit
4f8c681662
11 changed files with 846 additions and 281 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -12,8 +12,14 @@
|
|||
[package]
|
||||
edition = "2018"
|
||||
name = "sha256"
|
||||
version = "1.5.0"
|
||||
version = "1.6.0"
|
||||
authors = ["baoyachi <liaoymxsdl@gmail.com>"]
|
||||
build = false
|
||||
autolib = false
|
||||
autobins = false
|
||||
autoexamples = false
|
||||
autotests = false
|
||||
autobenches = false
|
||||
description = "sha256 crypto digest"
|
||||
readme = "README.md"
|
||||
keywords = [
|
||||
|
@ -25,6 +31,15 @@ categories = ["cryptography"]
|
|||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/baoyachi/sha256-rs"
|
||||
|
||||
[features]
|
||||
async = ["tokio"]
|
||||
default = ["async"]
|
||||
native_openssl = ["openssl"]
|
||||
|
||||
[lib]
|
||||
name = "sha256"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies.async-trait]
|
||||
version = "0.1.68"
|
||||
|
||||
|
@ -57,8 +72,3 @@ 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