-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
38 lines (34 loc) · 838 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
36
37
38
[package]
name = "wycheproof"
version = "0.6.0"
edition = "2021"
authors = ["Jack Lloyd <[email protected]>"]
license = "Apache-2.0"
description = "Wycheproof test vectors"
repository = "https://github.com/randombit/wycheproof-rs"
documentation = "https://docs.rs/wycheproof"
categories = [ "cryptography" ]
rust-version = "1.57"
[features]
# By default all tests are included
default = ["aead", "cipher", "dsa", "ec", "ecdh", "ecdsa", "eddsa", "fpe", "hkdf", "keywrap", "mac", "primality", "rsa_enc", "rsa_sig", "xdh"]
aead = []
cipher = []
dsa = []
ec = []
ecdh = []
ecdsa = []
eddsa = []
fpe = []
hkdf = []
keywrap = []
mac = []
primality = []
rsa_enc = []
rsa_sig = []
xdh = []
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
data-encoding = "2"
num-bigint = { version = "0.4", optional = true }