Skip to content

Commit

Permalink
Merge branch 'ban-more-unwanted-crates'
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Dec 19, 2024
2 parents d3f6d3c + 2a8442f commit e73ab2e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,22 @@ wildcards = "warn"
highlight = "all"

deny = [
# We are using Rustls for TLS. We don't want to accidentally pull in
# anything OpenSSL related
## Alternative ecosystems that we don't want to accidentally pull in.
## Having multiple large ecosystems solving the same problem can often be problematic,
## and also expensive from a compile time/binary size/supply chain security perspective.

# We are using Rustls, so we want to avoid OpenSSL
{ name = "openssl-sys" },
{ name = "openssl-src" },
{ name = "openssl-probe" },
# We are using tokio, so we want to avoid async-std
{ name = "async-std" },

## Older versions of crates where we only want to use the newer variants
{ name = "clap", version = "2" },
{ name = "clap", version = "3" },
{ name = "hyper", version = "0" },
{ name = "tokio", version = "0" },
{ name = "time", version = "0.1"},
]

Expand Down

0 comments on commit e73ab2e

Please sign in to comment.