-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 1.33 KB
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 1.33 KB
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 = "crypto"
version = "0.6.0-pre"
authors = ["The RustCrypto Project Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/crypto"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
keywords = ["crypto", "encryption", "rustcrypto"]
categories = ["cryptography", "no-std"]
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"
[dependencies]
common = { version = "0.2", package = "crypto-common", path = "../crypto-common", default-features = false }
# optional dependencies
aead = { version = "0.6.0-rc.5", path = "../aead", optional = true }
cipher = { version = "0.5", path = "../cipher", optional = true }
digest = { version = "0.11", path = "../digest", optional = true, features = ["mac"] }
elliptic-curve = { version = "0.14.0-rc.17", path = "../elliptic-curve", optional = true }
password-hash = { version = "0.6.0-rc.6", path = "../password-hash", optional = true }
signature = { version = "3.0.0-rc.6", path = "../signature", optional = true, default-features = false }
universal-hash = { version = "0.6.0-rc.4", path = "../universal-hash", optional = true }
[features]
std = ["elliptic-curve/std"]
getrandom = ["common/getrandom"]
rand_core = ["common/rand_core"]
[package.metadata.docs.rs]
all-features = true