summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2024-12-19 10:14:49 +0100
committerLinus Färnstrand <linus@mullvad.net>2024-12-19 15:30:00 +0100
commitd29b2ad00be47614c18b1850ffcab2e40f746f99 (patch)
tree256f8817ea2f4db03b24c1771a7eb82480ce957d
parentd3f6d3c858dd8c834a7ac9fe2c679e14a6af8236 (diff)
downloadmullvadvpn-d29b2ad00be47614c18b1850ffcab2e40f746f99.tar.xz
mullvadvpn-d29b2ad00be47614c18b1850ffcab2e40f746f99.zip
Forbid old hyper and async-std
-rw-r--r--deny.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml
index 9ed9d3b5c6..ed65f42f7d 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"},
]