Skip to content

Commit

Permalink
Temporarily ignore multiple versions of criterion's build dependencies
Browse files Browse the repository at this point in the history
Until japaric/cast.rs#26 is resolved, the `cast`
crate will pull in older versions of the `rustc_version`, `semver`, and
`semver-parser` crates. `cast` is a build dependency of `criterion`
which is used for benchmarking and is itself a dev dependency, not a
normal dependency.
  • Loading branch information
abrown committed May 13, 2021
1 parent 011e94f commit 6fb2a24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,7 @@ skip = [
{ name = "wast" }, # old one pulled in by witx
{ name = "itertools" }, # 0.9 pulled in by zstd-sys
{ name = "quick-error" }, # transitive dependencies
{ name = "rustc_version" }, # transitive dependencies of criterion's build script (see https://github.com/japaric/cast.rs/pull/26)
{ name = "semver" }, # transitive dependencies of criterion's build script (see https://github.com/japaric/cast.rs/pull/26)
{ name = "semver-parser" }, # transitive dependencies of criterion's build script (see https://github.com/japaric/cast.rs/pull/26)
]

0 comments on commit 6fb2a24

Please sign in to comment.