From 3aed2faf49a3126b5c788eda3cb62839d12465e1 Mon Sep 17 00:00:00 2001 From: Mikael Urankar Date: Fri, 23 Aug 2024 17:38:57 +0200 Subject: textproc/typst: Fix build with rust 1.80.0 PR: 280490 --- textproc/typst/files/patch-rust-1.80.0 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 textproc/typst/files/patch-rust-1.80.0 (limited to 'textproc/typst/files/patch-rust-1.80.0') diff --git a/textproc/typst/files/patch-rust-1.80.0 b/textproc/typst/files/patch-rust-1.80.0 new file mode 100644 index 000000000000..482000b21d20 --- /dev/null +++ b/textproc/typst/files/patch-rust-1.80.0 @@ -0,0 +1,25 @@ +From 5b0c627366babea1636b35db641c0fec964ddbd1 Mon Sep 17 00:00:00 2001 +From: David Tolnay +Date: Fri, 15 Mar 2024 20:47:22 -0700 +Subject: [PATCH] Delete identity conversion in format_description::parse_owned + (#671) + +--- + time/src/format_description/parse/mod.rs | 4 +--- + 1 file changed, 1 insertion(+), 3 deletions(-) + +diff --git a/time/src/format_description/parse/mod.rs b/time/src/format_description/parse/mod.rs +index 1fcc577c9..22ca52591 100644 +--- cargo-crates/time-0.3.34/src/format_description/parse/mod.rs ++++ cargo-crates/time-0.3.34/src/format_description/parse/mod.rs +@@ -80,9 +80,7 @@ pub fn parse_owned( + let mut lexed = lexer::lex::(s.as_bytes()); + let ast = ast::parse::<_, VERSION>(&mut lexed); + let format_items = format_item::parse(ast); +- let items = format_items +- .map(|res| res.map(Into::into)) +- .collect::, _>>()?; ++ let items = format_items.collect::, _>>()?; + Ok(items.into()) + } + -- cgit v1.2.3