-
Notifications
You must be signed in to change notification settings - Fork 258
/
Copy pathCargo.toml
30 lines (26 loc) · 931 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
[package]
name = "k12"
version = "0.4.0-pre"
description = "Pure Rust implementation of the KangarooTwelve hash function"
authors = ["RustCrypto Developers", "Diggory Hardy <[email protected]>"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
edition = "2021"
documentation = "https://docs.rs/k12"
repository = "https://github.com/RustCrypto/hashes"
keywords = ["crypto", "hash", "digest"]
categories = ["cryptography", "no-std"]
rust-version = "1.81"
[dependencies]
digest = { version = "=0.11.0-pre.9", default-features = false, features = ["core-api"] }
sha3 = { version = "=0.11.0-pre.4", default-features = false, path = "../sha3" }
[dev-dependencies]
digest = { version = "=0.11.0-pre.9", features = ["alloc", "dev"] }
hex-literal = "0.4"
[features]
default = ["std"]
std = ["digest/std"]
zeroize = ["digest/zeroize", "sha3/zeroize"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]