-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
117 lines (104 loc) · 2.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "pgp"
version = "0.9.0"
authors = ["dignifiedquire <[email protected]>"]
description = "OpenPGP implementation in Rust"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rpgp/rpgp"
repository = "https://github.com/rpgp/rpgp"
readme = "README.md"
resolver = "2"
keywords = ["pgp", "gpg", "openpgp", "email", "encryption"]
categories = ["cryptography", "email"]
exclude = ["tests/tests/*"]
edition = "2021"
rust-version = "1.57"
[dependencies]
aes = "^0.8"
base64 = "^0.20.0"
bitfield = "0.14"
block-padding = "^0.3.2"
blowfish = "^0.9"
byteorder = "^1.4"
camellia = "^0.1"
chrono = { version = "^0.4.23", default-features = false, features = ["clock", "std"] }
cast5 = "^0.11.0"
cfb-mode = "^0.8.1"
cipher = "^0.4"
crc24 = "^0.1"
derive_builder = "^0.12.0"
des = "^0.8"
digest = "^0.10"
elliptic-curve = "^0.12"
generic-array = "^0.14"
hex = "^0.4"
idea = "^0.5"
log = "0.4.6"
md-5 = { version = "^0.10.5", features = ["oid"] }
nom = "^4.2"
num-derive = "0.3.0"
num-traits = "0.2.6"
p256 = { version = "^0.11", features = ["ecdsa"] }
p384 = { version = "^0.11", features = ["ecdsa"] }
rand = "0.8"
ripemd = { version = "^0.1.3", features = ["oid"] }
rsa = { version = "^0.7.0", features = ["hazmat"] }
sha1 = { version = "^0.10.5", features = ["oid"] }
sha2 = { version = "^0.10.6", features = ["oid"] }
sha3 = { version = "^0.10.5", features = ["oid"] }
signature = "1.3.0"
smallvec = "1.8.0"
thiserror = "1.0.30"
twofish = "^0.7"
zeroize = { version = "1.5", features = ["zeroize_derive"] }
getrandom = { version = "0.2.6", optional = true }
picnic-bindings = { version = "0.5.1", default-features = false, features = [
"picnic",
"system",
"static-fallback",
"std",
"zeroize",
] }
pqcrypto-kyber = { version = "0.7", default-features = false }
pqcrypto-dilithium = { version = "0.4", default-features = false }
pqcrypto-traits = "0.3"
[dependencies.buf_redux]
version = "0.8.4"
default-features = false
[dependencies.ed25519-dalek]
version = "^1.0"
default-features = false
features = ["std", "u64_backend"]
[dependencies.flate2]
version = "^1.0"
default-features = false
features = ["rust_backend"]
[dependencies.gperftools]
version = "0.2.0"
optional = true
[dependencies.num-bigint]
version = "0.8.1"
features = ["rand", "i128", "u64_digit", "prime", "zeroize"]
package = "num-bigint-dig"
[dependencies.x25519-dalek]
version = "^1.0"
default-features = false
features = ["std", "u64_backend"]
[dev-dependencies]
glob = "^0.3"
hex-literal = "^0.3"
pretty_assertions = "1"
pretty_env_logger = "0.4"
rand_chacha = "0.3"
rand_xorshift = "0.3"
regex = "^1.7"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
[features]
default = []
profile = ["gperftools"]
asm = ["sha1/asm", "sha2/asm", "md-5/asm"]
wasm = ["chrono/wasmbind", "getrandom", "getrandom/js"]
nightly = []
[profile.bench]
debug = true