diff options
author | Mikael Urankar <mikael@FreeBSD.org> | 2024-06-14 14:54:35 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2024-06-18 10:59:01 +0000 |
commit | ca3baa41e4eb622f59d967ea444ecc170c5c8137 (patch) | |
tree | f31ea22eb3ff0efe87c4664d7b732b8e456ca902 | |
parent | f709c74213f92898a7dd4387fab413fd294a0cc7 (diff) |
www/hurl: Fix build with rust 1.79.0
PR: 279707
Approved by: portmgr (build fix blanket)
-rw-r--r-- | www/hurl/files/patch-1.79.0 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www/hurl/files/patch-1.79.0 b/www/hurl/files/patch-1.79.0 new file mode 100644 index 000000000000..72189a1618ef --- /dev/null +++ b/www/hurl/files/patch-1.79.0 @@ -0,0 +1,32 @@ +--- packages/hurl/src/http/options.rs.orig 2024-06-14 14:49:42 UTC ++++ packages/hurl/src/http/options.rs +@@ -15,6 +15,8 @@ + * limitations under the License. + * + */ ++#![allow(dead_code)] ++ + use std::time::Duration; + + use hurl_core::ast::Retry; +--- packages/hurl/src/parallel/message.rs.orig 2024-06-14 14:50:36 UTC ++++ packages/hurl/src/parallel/message.rs +@@ -15,6 +15,7 @@ + * limitations under the License. + * + */ ++#![allow(dead_code)] + use std::io; + + use crate::parallel::job::{Job, JobResult}; +--- packages/hurl/src/report/junit/xml/writer.rs.orig 2024-06-14 14:51:13 UTC ++++ packages/hurl/src/report/junit/xml/writer.rs +@@ -15,6 +15,8 @@ + * limitations under the License. + * + */ ++#![allow(dead_code)] ++ + use std::borrow::Cow; + use std::string::FromUtf8Error; + |