From 0298d20481cab1d663be4cf77202e3301effce15 Mon Sep 17 00:00:00 2001 From: Ryan Gonzalez Date: Thu, 13 Jan 2022 19:17:00 -0600 Subject: [PATCH] Update proc_macro2 Depending on onig ends up requiring proc_macro2, but the version that was in the lockfile breaks the build if panic=abort is used (which is done for coverage checks). This was fixed in 1.0.30+ for Rust 1.57+, so update to that version. Signed-off-by: Ryan Gonzalez --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index baeb7a5f..e3d16de7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -490,9 +490,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.24" +version = "1.0.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" +checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" dependencies = [ "unicode-xid", ]