Skip to content

Commit

Permalink
Forbid old hyper and async-std
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Dec 19, 2024
1 parent d3f6d3c commit d29b2ad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
]

Expand Down

0 comments on commit d29b2ad

Please sign in to comment.