From 09c5cf64bc16c7c47fdb3d31db027d00473b04fc Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Fri, 9 Sep 2022 15:20:53 +0000 Subject: [PATCH] Update deny.toml for idna The new version of `url` pulls in `idna v0.3`, which conflicts with `idna v0.2` pulled in by `validator`. This change updates deny.toml to remove outdated skips (for `tokio-util` and `rustls-pemfile`) and to add a skip for `idna v0.2`. Signed-off-by: Oliver Gould --- deny.toml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/deny.toml b/deny.toml index 88e453cdd..65ac5614c 100644 --- a/deny.toml +++ b/deny.toml @@ -79,17 +79,8 @@ allow-git = [] multiple-versions = "deny" [[bans.skip]] -# The following dependencies are still working on upgrading to 0.7: -# https://github.com/hyperium/h2/pull/603 -# https://github.com/tower-rs/tower/pull/638 -# https://github.com/tower-rs/tower-http/pull/221 -name = "tokio-util" -version = "0.6" - -[[bans.skip]] -# The following dependencies are still working on upgrading to 0.3 -# https://github.com/rustls/hyper-rustls/pull/165 -name = "rustls-pemfile" +# Waiting on https://github.com/Keats/validator/pull/233 +name = "idna" version = "0.2" [[bans.skip]]