30 lines
868 B
TOML
30 lines
868 B
TOML
[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"
|