From 0a3b4b8e4305b04db8820c50fd71380845c5daef Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 7 Feb 2023 22:21:00 +0100 Subject: [PATCH] Ignore duplicate dependencies pulled in by `windows-sys` --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index 06f972b7..de857f36 100644 --- a/deny.toml +++ b/deny.toml @@ -19,6 +19,8 @@ skip-tree = [ # currently duplicated through header, reqwest, tower-http and cookie # C.f. https://github.com/tokio-rs/axum/pull/1641 { name = "base64" }, + # parking_lot pulls in old versions of windows-sys + { name = "windows-sys" }, ] [sources]