forked from RustCrypto/hashes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 695 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 695 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
[package]
name = "ripemd"
version = "0.2.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/ripemd"
readme = "README.md"
repository = "https://github.com/RustCrypto/hashes"
license = "MIT OR Apache-2.0"
keywords = ["ripemd", "hash", "digest"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the RIPEMD hash functions"
[dependencies]
digest = "0.11"
[dev-dependencies]
digest = { version = "0.11", features = ["dev"] }
hex-literal = "1"
[features]
default = ["alloc", "oid"]
alloc = ["digest/alloc"]
oid = ["digest/oid"]
zeroize = ["digest/zeroize"]
[package.metadata.docs.rs]
all-features = true