From 59e97ae1600554e4964f1c31c6c98ac04a0e35c6 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 18 Sep 2023 21:29:15 +0700 Subject: [PATCH] Fix minimal-versions build. Due to changes in the nightly compiler, using a recent nightly requires proc-macro2 1.0.60 or later: https://github.com/dtolnay/proc-macro2/issues/356 --- miette-derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miette-derive/Cargo.toml b/miette-derive/Cargo.toml index becdc17..b5a7032 100644 --- a/miette-derive/Cargo.toml +++ b/miette-derive/Cargo.toml @@ -11,6 +11,6 @@ repository = "https://github.com/zkat/miette" proc-macro = true [dependencies] -proc-macro2 = "1.0" +proc-macro2 = "1.0.60" quote = "1.0" syn = "2.0.11"