From 49da3f85114181232243aa43e97545c4f585b8be Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 23 Sep 2023 10:06:06 +0700 Subject: [PATCH] Fix nightly build: Update log, proc-macro2. Updating log brings a version of value-bag that compiles on current nightly: https://github.com/sval-rs/value-bag/issues/62 Updating proc-macro2 to be at least 1.0.60 lets it work on current nightly as well: https://github.com/dtolnay/proc-macro2/issues/356 --- Cargo.lock | 27 ++++++--------------------- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7dae2c89..d2754303 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1133,16 +1133,6 @@ version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df" -[[package]] -name = "ctor" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" -dependencies = [ - "quote", - "syn 1.0.109", -] - [[package]] name = "ctr" version = "0.9.2" @@ -3115,11 +3105,10 @@ dependencies = [ [[package]] name = "log" -version = "0.4.17" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" +checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" dependencies = [ - "cfg-if", "value-bag", ] @@ -3966,9 +3955,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.59" +version = "1.0.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" +checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" dependencies = [ "unicode-ident", ] @@ -5767,13 +5756,9 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "value-bag" -version = "1.0.0-alpha.9" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" -dependencies = [ - "ctor", - "version_check", -] +checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3" [[package]] name = "vcpkg" diff --git a/Cargo.toml b/Cargo.toml index adfba830..fe1c377a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ tar = "0.4.38" cargo = "0.71.0" fs_extra = "1.3.0" wax = "0.5.0" -proc-macro2 = "1.0.59" +proc-macro2 = "1.0.60" cached = "0.44.0" config = "0.13.3" toml = "0.7.4"