forked from RustCrypto/MACs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.01 KB
/
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
32
[package]
name = "hmac"
version = "0.13.0-pre.3"
description = "Generic implementation of Hash-based Message Authentication Code (HMAC)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
documentation = "https://docs.rs/hmac"
repository = "https://github.com/RustCrypto/MACs"
keywords = ["crypto", "mac", "hmac", "digest"]
categories = ["cryptography", "no-std"]
rust-version = "1.72"
[dependencies]
digest = { version = "=0.11.0-pre.8", features = ["mac"] }
[dev-dependencies]
digest = { version = "=0.11.0-pre.8", features = ["dev"] }
md-5 = { version = "=0.11.0-pre.3", default-features = false }
sha1 = { version = "=0.11.0-pre.3", default-features = false }
sha2 = { version = "=0.11.0-pre.3", default-features = false }
streebog = { version = "=0.11.0-pre.3", default-features = false }
hex-literal = "0.4"
[features]
std = ["digest/std"]
reset = [] # Enable ability to reset HMAC instances
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]