From 1f4bc0da0c7dbc9e6a23c48d6e414eb7c29337cc Mon Sep 17 00:00:00 2001 From: Marek Date: Tue, 18 Oct 2022 15:15:20 -0700 Subject: [PATCH] Remove `arrayvec` and `itoa` from `skip-tree` (#5410) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- deny.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/deny.toml b/deny.toml index c9a12fa5d..1b77b8413 100644 --- a/deny.toml +++ b/deny.toml @@ -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" },