Skip to content

Commit

Permalink
Temporarily allow webpki in deny.toml (#3646)
Browse files Browse the repository at this point in the history
Part of a fix for #3645

This changeset allows us to keep working on the router while #3643 deals
with the issue. Note the initial issue is not critical for the router
since operators have agency on which subgraphs they make https requests
to.

So far we believe that the router is not affected, as it does not support client certificates.
  • Loading branch information
o0Ignition0o authored Aug 22, 2023
2 parents 41aab27 + 880045e commit 6622a7a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ git-fetch-with-cli = true
# while https://github.com/chronotope/chrono/issues/499 is open.
# We need to keep track of this issue, and make sure `tracing-subscriber` is updated
# We will then be able to remove this
ignore = ["RUSTSEC-2020-0159", "RUSTSEC-2020-0071"]
#
# RUSTSEC-2023-0052 and RUSTSEC-2023-0053 are pending a webpki update that is tracked by https://github.com/apollographql/router/issues/3645
# and will be fixed by https://github.com/apollographql/router/pull/3643
ignore = ["RUSTSEC-2020-0159", "RUSTSEC-2020-0071", "RUSTSEC-2023-0053", "RUSTSEC-2023-0052"]

# This section is considered when running `cargo deny check licenses`
# More documentation for the licenses section can be found here:
Expand Down

0 comments on commit 6622a7a

Please sign in to comment.