From 725f226941543ae4effc9207ca433069859d872b Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 6 Jul 2023 15:07:10 +0200 Subject: [PATCH 1/3] Bump syn from 1.0.103 to 1.0.109 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e23c6732..390ed531a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2133,9 +2133,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "syn" -version = "1.0.103" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ "proc-macro2", "quote", From 24c74d0f573a508cf82204fa55fd909d47eab693 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 6 Jul 2023 15:10:22 +0200 Subject: [PATCH 2/3] deny.toml: add syn to skip list --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index c52b321dd..46d35ad03 100644 --- a/deny.toml +++ b/deny.toml @@ -87,6 +87,8 @@ skip = [ { name = "aho-corasick", version = "0.7.19" }, # ordered-multimap (via rust-ini) { name = "hashbrown", version = "0.13.2" }, + # various crates + { name = "syn", version = "1.0.109" }, ] # spell-checker: enable From 8089909448449854dba1f9647e254c77e68be05c Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 6 Jul 2023 15:14:38 +0200 Subject: [PATCH 3/3] Cargo.toml: use "workspace = true" for rstest --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e857e5fed..417c7f920 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -492,7 +492,7 @@ uucore = { workspace = true, features = ["entries", "process", "signals"] } walkdir = { workspace = true } is-terminal = { workspace = true } hex-literal = "0.4.1" -rstest = "0.17.0" +rstest = { workspace = true } [target.'cfg(any(target_os = "linux", target_os = "android"))'.dev-dependencies] procfs = { version = "0.15", default-features = false }