From 11275c4015e4d8fd3bf5af1dcd5e139c4dab1883 Mon Sep 17 00:00:00 2001 From: "Neal H. Walfield" Date: Thu, 13 Apr 2023 00:44:06 +0200 Subject: [PATCH] Always enable compression - Have the `sequoia-openpgp` always enable the `compression` feature, which is always needed. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6a42aee..b36765b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ memmem = "0.1" memoffset = "0.8" # When bumping the version of Sequoia search the code for XXX to find # spots where we can take advantage of new features. -sequoia-openpgp = { version = "1.0", default-features = false } +sequoia-openpgp = { version = "1.0", default-features = false, features = [ "compression" ] } thiserror = "1" [dependencies.rusqlite] -- GitLab