-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 926 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 926 Bytes
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
33
[package]
name = "hmac"
version = "0.13.0"
description = "Generic implementation of Hash-based Message Authentication Code (HMAC)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
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.85"
[dependencies]
digest = { version = "0.11.2", features = ["mac"] }
[dev-dependencies]
digest = { version = "0.11.2", features = ["dev"] }
md-5 = { version = "0.11", default-features = false }
sha1 = { version = "0.11", default-features = false }
sha2 = { version = "0.11", default-features = false }
streebog = { version = "0.11", default-features = false }
hex-literal = "1"
[features]
zeroize = ["digest/zeroize"]
[lints]
workspace = true
[package.metadata.docs.rs]
all-features = true