diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2024-12-19 10:14:49 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2024-12-19 15:30:00 +0100 |
| commit | d29b2ad00be47614c18b1850ffcab2e40f746f99 (patch) | |
| tree | 256f8817ea2f4db03b24c1771a7eb82480ce957d | |
| parent | d3f6d3c858dd8c834a7ac9fe2c679e14a6af8236 (diff) | |
| download | mullvadvpn-d29b2ad00be47614c18b1850ffcab2e40f746f99.tar.xz mullvadvpn-d29b2ad00be47614c18b1850ffcab2e40f746f99.zip | |
Forbid old hyper and async-std
| -rw-r--r-- | deny.toml | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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"}, ] |
