forked from cryspen/hpke-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·49 lines (44 loc) · 1.54 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "hpke-rs"
version = "0.2.1-pre.1"
authors = ["Franziskus Kiefer <[email protected]>"]
edition = "2021"
license = "MPL-2.0"
documentation = "https://docs.rs/hpke-rs"
description = "HPKE Implementation"
readme = "Readme.md"
repository = "https://github.com/franziskuskiefer/hpke-rs"
exclude = ["/tests"]
[dependencies]
log = "0.4"
serde = { version = "1.0", features = ["derive"], optional = true }
tls_codec = { version = "0.4.1-pre.1", features = ["derive"], optional = true }
zeroize = { version = "1.5", features = ["zeroize_derive"] }
hpke-rs-crypto = { version = "0.2.0", path = "./traits" }
[features]
default = []
std = []
serialization = ["serde", "tls_codec", "tls_codec/serde", "std"]
hazmat = []
hpke-test = ["std"]
hpke-test-prng = [] # ⚠️ Enable testing PRNG - DO NOT USE
[dev-dependencies]
hpke-rs-crypto = { version = "0.2.0", path = "./traits", features = ["std"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
lazy_static = "1.4"
rayon = "1.5"
hpke-rs = { path = ".", features = ["hpke-test", "hazmat"] }
hpke-rs-rust-crypto = { version = "0.2.0", path = "./rust_crypto_provider", features = [
"deterministic-prng",
] }
# hpke-rs-evercrypt = { version = "0.1.3-pre.1", path = "./evercrypt_provider", features = ["deterministic-prng"] }
rand = { version = "0.8" }
pretty_env_logger = "0.5"
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "manual_benches"
harness = false