Date: Tue, 18 Jun 2024 10:59:42 GMT From: Mikael Urankar <mikael@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: ca3baa41e4eb - main - www/hurl: Fix build with rust 1.79.0 Message-ID: <202406181059.45IAxg0B079336@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by mikael: URL: https://cgit.FreeBSD.org/ports/commit/?id=ca3baa41e4eb622f59d967ea444ecc170c5c8137 commit ca3baa41e4eb622f59d967ea444ecc170c5c8137 Author: Mikael Urankar <mikael@FreeBSD.org> AuthorDate: 2024-06-14 14:54:35 +0000 Commit: Mikael Urankar <mikael@FreeBSD.org> CommitDate: 2024-06-18 10:59:01 +0000 www/hurl: Fix build with rust 1.79.0 PR: 279707 Approved by: portmgr (build fix blanket) --- www/hurl/files/patch-1.79.0 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) 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; +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406181059.45IAxg0B079336>