Commit 21282ff
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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
57 | | - | |
58 | 56 | | |
59 | 57 | | |
60 | 58 | | |
| |||
0 commit comments