Skip to content

Commit 21282ff

Browse files
authored
chore: remove stale skip-tree root from deny.toml (#4515)
a warning is observed when we run the following `cargo deny` command: ``` $ cargo deny --all-features check bans licenses sources warning[unmatched-skip-root]: skip tree root was not found in the dependency graph ┌─ /linkerd/linkerd2-proxy/deny.toml:57:15 │ 57 │ { name = "socket2", version = "0.5" }, │ ━━━━━━━ no crate matched these criteria bans ok, licenses ok, sources ok ``` this commit removes this skip-tree root, now that this crate and version are no longer in our dependency tree. after applying this change: ``` $ cargo deny --all-features check bans licenses sources bans ok, licenses ok, sources ok ``` Signed-off-by: katelyn martin <kate@buoyant.io>
1 parent c1bc7dc commit 21282ff

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

deny.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ skip-tree = [
5353
{ name = "pprof" },
5454
# zerocopy v0.8 is still propagating through the ecosystem
5555
{ name = "zerocopy", version = "0.7" },
56-
# socket2 v0.6 is still propagating through the ecosystem
57-
{ name = "socket2", version = "0.5" },
5856
]
5957

6058
[sources]

0 commit comments

Comments
 (0)