From d29b2ad00be47614c18b1850ffcab2e40f746f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Thu, 19 Dec 2024 10:14:49 +0100 Subject: [PATCH] Forbid old hyper and async-std --- deny.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/deny.toml b/deny.toml index 9ed9d3b5c6d9..ed65f42f7dd5 100644 --- a/deny.toml +++ b/deny.toml @@ -80,8 +80,14 @@ deny = [ { name = "openssl-sys" }, { name = "openssl-src" }, { name = "openssl-probe" }, + # We are using clap 4, and want to avoid multiple versions { name = "clap", version = "2" }, { name = "clap", version = "3" }, + # We are using tokio as our asynchronous runtime. Having multiple async runtimes + # is both error prone and too expensive (dependency chain, binary size etc) + { name = "async-std" }, + # We have managed to upgrade to hyper 1 and don't want to carry both + { name = "hyper", version = "0" }, { name = "time", version = "0.1"}, ]