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
30
Cargo.toml.orig
generated
Normal file
30
Cargo.toml.orig
generated
Normal file
|
@ -0,0 +1,30 @@
|
|||
[package]
|
||||
name = "sha256"
|
||||
version = "1.5.0"
|
||||
authors = ["baoyachi <liaoymxsdl@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "sha256 crypto digest"
|
||||
keywords = ["sha256", "hash", "digest"]
|
||||
readme = "README.md"
|
||||
categories = ["cryptography"]
|
||||
repository = "https://github.com/baoyachi/sha256-rs"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
hex = "0.4.2"
|
||||
sha2 = { version = "0.10.6", default-features = false }
|
||||
openssl = { version = "0.10.54", optional = true, default-features = false }
|
||||
async-trait = "0.1.68"
|
||||
tokio = { version = "1.28.2", optional = true, features = ["io-util", "fs"] }
|
||||
bytes = "1.4.0"
|
||||
|
||||
[features]
|
||||
default = ["async"]
|
||||
native_openssl = ["openssl"]
|
||||
async = ["tokio"]
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.28.2", features = ["full"] }
|
||||
tokio-test = "0.4.2"
|
Loading…
Add table
Add a link
Reference in a new issue