-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
39 lines (33 loc) · 1.01 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
[package]
name = "evercrypt"
version = "0.0.11"
authors = ["Franziskus Kiefer <[email protected]>"]
edition = "2021"
license = "MPL-2.0"
documentation = "https://www.franziskuskiefer.de/evercrypt-rust"
description = "Crypto library using formally verified code from HACL/Evercrypt"
readme = "README.md"
repository = "https://github.com/franziskuskiefer/evercrypt-rust/"
[lib]
crate-type = ["staticlib", "cdylib", "lib"]
[features]
default = ["random"]
random = ["rand", "rand_core"]
serialization = ["serde", "serde_json"]
[dependencies]
evercrypt-sys = { version = "0.0.9", path = "../evercrypt-sys" }
rand = { version = "0.8", optional = true }
rand_core = { version = "0.6", optional = true }
serde_json = { version = "1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
serde_json = "1.0"
serde = {version = "1.0", features = ["derive"]}
criterion = "^0.3"
rand = "0.8"
[[bench]]
name = "benchmark"
harness = false
[[bench]]
name = "aead"
harness = false