Remove `arrayvec` and `itoa` from `skip-tree` (#5410)

We recently updated `inferno`, and running
```bash
cargo deny --all-features check bans
```
started producing the following warnings:
```
   ┌─ .../zebra/deny.toml:89:5
   │
89 │     { name = "arrayvec", version = "=0.4.12" },
   │     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no crate matched these criteria

warning[B010]: skip tree root was not found in the dependency graph
   ┌─ .../zebra/deny.toml:90:5
   │
90 │     { name = "itoa", version = "=0.4.8" },
   │     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no crate matched these criteria

bans ok
```

The warning means we don't need to list the `arrayvec` and `itoa`
dependencies in the `skip-tree` section, so this commit removes them.
This commit is contained in:
Marek 2022-10-18 15:15:20 -07:00 committed by GitHub
parent 3cbf8dafaf
commit 1f4bc0da0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -85,10 +85,6 @@ skip-tree = [
# Optional dependencies
# wait for inferno -> num-format to upgrade
{ name = "arrayvec", version = "=0.4.12" },
{ name = "itoa", version = "=0.4.8" },
# upgrade abscissa (required dependency) and arti (optional dependency)
{ name = "darling", version = "=0.10.2" },
{ name = "darling", version = "=0.12.4" },