forked from rpgp/rpgp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
104 lines (90 loc) · 2.26 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
[package]
name = "pgp"
version = "0.6.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"
keywords = ["pgp", "gpg", "openpgp", "email", "encryption"]
categories = ["cryptography", "std", "email"]
exclude = ["tests/tests/*"]
edition = "2018"
[dependencies]
aes = "^0.4"
base64 = "^0.12.0"
bitfield = "0.13.1"
block-modes = "^0.5"
block-padding = "0.2.0"
blowfish = "^0.5"
byteorder = "^1.2"
cast5 = "0.7.0"
chrono = "^0.4"
cfb-mode = "^0.4.0"
circular = "^0.3"
clear_on_drop = { version = "0.2.3", features = ["no_cc"] }
crc24 = "^0.1"
derive_builder = "0.9.0"
des = "^0.4"
digest = "^0.9"
generic-array = "^0.14"
hex = "^0.4"
lazy_static = "1.2.0"
log = "0.4.6"
md-5 = "^0.9"
nom = "^4.2"
num-derive = "0.3.0"
num-traits = "0.2.6"
rand = "0.7"
ripemd160 = "^0.9"
rsa = "^0.3.0"
sha-1 = "^0.9"
sha2 = "^0.9"
sha3 = "0.9"
signature = "1.1"
smallvec = "1.0.0"
thiserror = "1.0.9"
try_from = "^0.3"
twofish = "^0.3"
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
[dependencies.buf_redux]
version = "0.8.1"
default-features = false
[dependencies.ed25519-dalek]
version = "1.0.0-pre.4"
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.6"
features = ["rand", "i128", "u64_digit", "prime", "zeroize"]
package = "num-bigint-dig"
[dependencies.x25519-dalek]
version = "0.6"
default-features = false
features = ["std", "u64_backend"]
[dev-dependencies]
glob = "^0.3"
hex-literal = "^0.3"
pretty_assertions = "0.6"
pretty_env_logger = "0.4"
rand_chacha = "0.2"
rand_xorshift = "0.2"
regex = "^1.1"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
[features]
default = []
nightly = ["x25519-dalek/nightly", "ed25519-dalek/nightly", "rsa/nightly", "rand/nightly", "num-bigint/nightly", "clear_on_drop/nightly"]
profile = ["gperftools"]
asm = ["sha-1/asm", "sha2/asm", "md-5/asm", "nightly"]
wasm = ["chrono/wasmbind", "nightly", "rand/wasm-bindgen"]
[profile.bench]
debug = true