summaryrefslogtreecommitdiffstats
path: root/openpgp/Cargo.toml
blob: acf33a3cd977ef76344b550d6f6121872fbf9805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "openpgp"
version = "0.1.0"
authors = ["Neal H. Walfield <neal@gnu.org>"]

[dependencies]
buffered-reader = { path = "../buffered-reader", default-features = false }
base64 = "0.9.0"
bzip2 = { version = "0.3.2", optional = true }
failure = "0.1.1"
flate2 = { version = "1.0.1", optional = true }
nettle = { git = "https://gitlab.com/sequoia-pgp/nettle-rs.git" }
quickcheck = "0.6"
time = "0.1.38"

[features]
default = ["compression"]

# The compression algorithms.
compression = ["compression-deflate", "compression-bzip2"]
compression-deflate = ["flate2", "buffered-reader/compression-deflate"]
compression-bzip2 = ["bzip2", "buffered-reader/compression-bzip2"]