1
0
Fork 0

Adding upstream version 1.6.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-06 13:55:52 +01:00
parent b3531968df
commit 7e1ba12a82
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
11 changed files with 846 additions and 281 deletions

View file

@ -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"]