Ignore duplicate wasi crate in dependency tree (#4190)

# Objective

- CI is giving a warning about duplicate dependency because of a differing versions between `winit` and `ahash` of https://github.com/bytecodealliance/wasi
- PRs that are mergeable look like they're not.

## Solution

- Add this crate to the list of ignored duplicates
This commit is contained in:
Alice Cecile 2022-03-12 02:38:46 +00:00
parent bf6de89622
commit a291b5aaed

View file

@ -48,6 +48,7 @@ skip = [
{ name = "ndk-glue", version = "0.5" }, # from winit v0.26.1
{ name = "ndk-sys", version = "0.2" }, # from winit v0.26.1
{ name = "stdweb", version = "0.1" }, # from rodio v0.15.0
{ name = "wasi", version = "0.10"}, # from ahash v0.7.6
]
[sources]