-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
136 lines (120 loc) · 3.35 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[package]
name = "pgp"
version = "0.13.1"
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.75"
[dependencies]
aes = "^0.8"
argon2 = "0.5"
base64 = "^0.22.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"
const-oid = "0.9"
crc24 = "^0.1"
derive_builder = "^0.20.0"
des = "^0.8"
digest = "^0.10"
dsa = "^0.6.3"
ecdsa = "0.16"
elliptic-curve = "^0.13"
generic-array = "^0.14"
hex = "^0.4"
idea = "^0.5"
iter-read = "1"
log = "0.4.6"
md-5 = { version = "^0.10.5", features = ["oid"] }
nom = "^7.0"
num_enum = "0.7"
num-traits = "0.2.6"
p256 = { version = "^0.13", features = ["ecdsa", "ecdh"] }
p384 = { version = "^0.13", features = ["ecdsa"] }
p521 = { version = "^0.13", features = ["ecdsa", "ecdh"] }
k256 = { version = "0.13", features = ["ecdsa"] }
rand = "0.8"
ripemd = { version = "^0.1.3", features = ["oid"] }
rsa = { version = "0.9.0" }
sha1 = { version = "^0.10.5", features = ["oid"] }
sha1-checked = "0.10"
sha2 = { version = "^0.10.6", features = ["oid"] }
sha3 = { version = "^0.10.5", features = ["oid"] }
signature = "2.0.0"
smallvec = "1.8.0"
thiserror = "1.0.30"
twofish = "^0.7"
zeroize = { version = "1.5", features = ["zeroize_derive"] }
getrandom = { version = "0.2", optional = true }
bstr = { version = "1.4.0", default-features = false, features = ["std"] }
hkdf = "0.12.4"
aes-gcm = "0.10.3"
eax = "0.5.0"
ocb3 = "0.1"
aes-kw = { version = "0.2.1", features = ["std"] }
derive_more = { version = "1.0.0-beta.6", features = ["debug"] }
[dependencies.buffer-redux]
version = "1.0.0"
default-features = false
[dependencies.curve25519-dalek]
version = "4.1.3"
default-features = false
features = ["alloc", "precomputed-tables", "zeroize"]
[dependencies.ed25519-dalek]
version = "2.0.0"
default-features = false
features = ["std", "zeroize", "fast"]
[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 = "2.0.1"
default-features = false
features = ["alloc", "precomputed-tables", "zeroize", "static_secrets"]
[dev-dependencies]
glob = "^0.3"
hex-literal = "^0.4"
pretty_assertions = "1"
pretty_env_logger = "0.5"
rand_chacha = "0.3"
rand_xorshift = "0.3"
regex = "^1.7"
rpgp_0_10 = { version = "=0.10.2", package = "pgp" }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
criterion = { version = "0.5", features = ["html_reports"] }
[features]
default = []
nightly = ["rsa/nightly", "rand/nightly", "num-bigint/nightly"]
profile = ["gperftools"]
asm = ["sha1/asm", "sha2/asm", "md-5/asm"]
wasm = ["chrono/wasmbind", "getrandom", "getrandom/js"]
[profile.bench]
debug = 2
[[bench]]
name = "benches_main"
harness = false
[lib]
bench = false