-
Notifications
You must be signed in to change notification settings - Fork 189
/
Cargo.toml
35 lines (31 loc) · 889 Bytes
/
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
33
34
35
[package]
name = "kem"
description = "Traits for key encapsulation mechanisms"
version = "0.3.0-pre.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/kem"
homepage = "https://github.com/RustCrypto/traits/tree/master/kem"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
edition = "2021"
keywords = ["crypto"]
categories = ["cryptography", "no-std"]
rust-version = "1.66"
[dependencies]
rand_core = "0.6"
zeroize = { version = "1.7", default-features = false }
[dev-dependencies]
hpke = "0.12"
p256 = { version = "0.9", features = ["ecdsa"] }
pqcrypto = { version = "0.15", default-features = false, features = [
"pqcrypto-saber",
] }
pqcrypto-traits = "0.3"
rand = { version = "0.8" }
x3dh-ke = "0.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lib]
doctest = false