summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-04-06 18:45:29 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2021-04-08 10:18:14 +0200
commit73414861c2908940fc96c8d638c53ff648a7dfef (patch)
treed4f1d8274b126267c6b6c256389e6633bf0f85d9 /openpgp
parent7f3a7dbb489ec6520a5f7fdbd8ac6ccfea9f5999 (diff)
Update MSRV to 1.48.0
- Update our MSRV to the one used in Debian bullseye, 1.48.0.
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/README.md2
-rw-r--r--openpgp/tests/for-each-artifact.rs6
2 files changed, 1 insertions, 7 deletions
diff --git a/openpgp/README.md b/openpgp/README.md
index ac8c6177..7b9782ed 100644
--- a/openpgp/README.md
+++ b/openpgp/README.md
@@ -90,4 +90,4 @@ support.
# Minimum Supported Rust Version (MSRV)
-`sequoia-openpgp` requires Rust 1.46.
+`sequoia-openpgp` requires Rust 1.48.
diff --git a/openpgp/tests/for-each-artifact.rs b/openpgp/tests/for-each-artifact.rs
index 30359ba8..4d22840d 100644
--- a/openpgp/tests/for-each-artifact.rs
+++ b/openpgp/tests/for-each-artifact.rs
@@ -10,12 +10,6 @@ use sequoia_openpgp as openpgp;
use crate::openpgp::parse::*;
use crate::openpgp::PacketPile;
use crate::openpgp::Result;
-// Rustc 1.34 thinks SerializeInto is unused, but if we don't import
-// it, it correctly complains about no trait being in scope providing
-// .to_vec(). This seems to be a compiler bug, because rustc 1.40
-// behaves correctly. Hence, we work around the unused import warning
-// until we rise our MSRV.
-#[allow(unused_imports)] // XXX: Remove me.
use crate::openpgp::serialize::{Serialize, SerializeInto};
mod for_each_artifact {