From a629d306ce254d4a5e6e8f336967b427cf354410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gonz=C3=A1lez?= Date: Fri, 21 Jul 2023 11:41:10 +0100 Subject: [PATCH 1/2] Upgrade proc-macro2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our CI's Nightly Checks are failing with 'unknown feature `proc_macro_span_shrink`' error. This problem is explained in https://github.com/rust-lang/rust/issues/113152. As mentioned in https://github.com/rust-lang/rust/issues/113152#issuecomment-1612580132 the issue may be solved by updating proc-macro2 to version 1.0.60+ Run 'cargo update --package proc-macro2' to fix the issue. Signed-off-by: Tomás González --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed0b7cce..ad231131 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1187,9 +1187,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.52" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] From f02a30ffae205dadde3880400127557ba91c5821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gonz=C3=A1lez?= Date: Fri, 21 Jul 2023 11:44:11 +0100 Subject: [PATCH 2/2] Update CONTRIBUTORS.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás González --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 56f35793..872f7a79 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,3 +20,4 @@ This file aims to acknowledge the specific contributors referred to in the "Cont * Mohamed Omar Asaker (@mohamedasaker-arm) * Gowtham Suresh Kumar (@gowthamsk-arm) * William Brown (@firstyear) +* Tomas Agustin Gonzalez Orlando (@tgonzalezorlandoarm)