forked from RustCrypto/hashes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (27 loc) · 828 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "skein"
version = "0.2.0-pre"
description = "Skein hash functions"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.71"
readme = "README.md"
documentation = "https://docs.rs/skein"
repository = "https://github.com/RustCrypto/hashes"
keywords = ["crypto", "skein", "hash", "digest"]
categories = ["cryptography", "no-std"]
[dependencies]
digest = "=0.11.0-pre.8"
threefish = { version = "0.5.2", default-features = false }
[dev-dependencies]
digest = { version = "=0.11.0-pre.8", features = ["dev"] }
hex-literal = "0.4"
base16ct = { version = "0.2", features = ["alloc"] }
[features]
default = ["std"]
std = ["digest/std"]
zeroize = ["digest/zeroize", "threefish/zeroize"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]