summaryrefslogtreecommitdiffstats
path: root/sqv
diff options
context:
space:
mode:
Diffstat (limited to 'sqv')
-rw-r--r--sqv/Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/sqv/Cargo.toml b/sqv/Cargo.toml
index 44274919..a0e20ab8 100644
--- a/sqv/Cargo.toml
+++ b/sqv/Cargo.toml
@@ -21,7 +21,7 @@ gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-openpgp = { path = "../openpgp", version = "0.19", default-features = false, features = ["crypto-nettle"] }
+sequoia-openpgp = { path = "../openpgp", version = "0.19", default-features = false }
anyhow = "1"
chrono = "0.4"
clap = "2.32.0"
@@ -36,3 +36,11 @@ assert_cli = "0.6"
[[bin]]
name = "sqv"
path = "src/sqv-usage.rs"
+
+[features]
+default = ["crypto-nettle"]
+crypto-nettle = ["sequoia-openpgp/crypto-nettle"]
+crypto-cng = ["sequoia-openpgp/crypto-cng"]
+compression = ["sequoia-openpgp/compression"]
+compression-deflate = ["sequoia-openpgp/compression-deflate"]
+compression-bzip2 = ["sequoia-openpgp/compression-bzip2"]