diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:47:55 +0000 |
commit | 2aadc03ef15cb5ca5cc2af8a7c08e070742f0ac4 (patch) | |
tree | 033cc839730fda84ff08db877037977be94e5e3a /vendor/der/debian/patches/fix-tests-feature-time.diff | |
parent | Initial commit. (diff) | |
download | cargo-upstream.tar.xz cargo-upstream.zip |
Adding upstream version 0.70.1+ds1.upstream/0.70.1+ds1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/der/debian/patches/fix-tests-feature-time.diff')
-rw-r--r-- | vendor/der/debian/patches/fix-tests-feature-time.diff | 25 |
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, + }; + |