summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@sequoia-pgp.org>2024-05-03 16:19:49 +0200
committerNeal H. Walfield <neal@sequoia-pgp.org>2024-05-03 16:19:49 +0200
commitef368ceb136d9861b8b799930aa58f05276795f3 (patch)
treef50d3fe9ce9f1956d19b01d9e6f2292b22c9d3e4
parent30d7dd9eafa2ca1da207c268e01aef8ff89c9c56 (diff)
guide: Disable the default features for sequoia-openpgp.
- Like other crates, allow the user to select what crypto backend to use by disabling the default features for the `sequoia-openpgp` dependency.
-rw-r--r--guide/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/Cargo.toml b/guide/Cargo.toml
index 42fa131a..7bcb9225 100644
--- a/guide/Cargo.toml
+++ b/guide/Cargo.toml
@@ -13,7 +13,7 @@ license = "CC-BY-SA-4.0"
build = "build.rs"
[dependencies]
-sequoia-openpgp = { path = "../openpgp", version = "1.0.0" }
+sequoia-openpgp = { path = "../openpgp", version = "1.0.0", default-features = false }
anyhow = "1.0.18"
[lib]