-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 808 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 808 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
34
35
36
[package]
name = "md-5"
version = "0.11.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/md-5"
readme = "README.md"
repository = "https://github.com/RustCrypto/hashes"
license = "MIT OR Apache-2.0"
keywords = ["md5", "hash", "digest"]
categories = ["cryptography", "no-std"]
description = "MD5 hash function"
[lib]
name = "md5"
[dependencies]
digest = "0.11"
cfg-if = "1"
[dev-dependencies]
digest = { version = "0.11", features = ["dev"] }
hex-literal = "1"
[features]
default = ["alloc", "oid"]
alloc = ["digest/alloc"]
oid = ["digest/oid"] # Enable OID support
zeroize = ["digest/zeroize"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(md5_backend, values("soft"))'] }
[package.metadata.docs.rs]
all-features = true