summaryrefslogtreecommitdiffstats
path: root/vendor/der/debian/patches/fix-tests-feature-time.diff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/der/debian/patches/fix-tests-feature-time.diff')
-rw-r--r--vendor/der/debian/patches/fix-tests-feature-time.diff25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/der/debian/patches/fix-tests-feature-time.diff b/vendor/der/debian/patches/fix-tests-feature-time.diff
new file mode 100644
index 0000000..d780563
--- /dev/null
+++ b/vendor/der/debian/patches/fix-tests-feature-time.diff
@@ -0,0 +1,25 @@
+Description: fix 'time' feature tests
+ The following invocation fails due to Error not being in scope:
+ cargo test --all-targets --no-default-features --features time
+
+Author: Emanuele Rocca <ema@debian.org>
+
+Last-Update: 2023-06-30
+Index: der/src/asn1/generalized_time.rs
+===================================================================
+--- der.orig/src/asn1/generalized_time.rs
++++ der/src/asn1/generalized_time.rs
+@@ -8,9 +8,12 @@ use crate::{
+ };
+ use core::time::Duration;
+
++#[cfg(any(feature = "std", feature = "time"))]
++use crate::Error;
++
+ #[cfg(feature = "std")]
+ use {
+- crate::{asn1::AnyRef, Error},
++ crate::asn1::AnyRef,
+ std::time::SystemTime,
+ };
+