From 4dc24fa1a552b277fc1e15ec5d8369c9dc816457 Mon Sep 17 00:00:00 2001 From: Michael-F-Bryan Date: Thu, 2 Mar 2023 15:04:12 +0800 Subject: [PATCH] Made "cargo deny" pass --- Cargo.lock | 4 ++-- deny.toml | 7 ++++--- lib/c-api/Cargo.toml | 2 +- lib/cli/Cargo.toml | 2 +- lib/registry/Cargo.toml | 2 +- lib/vfs/Cargo.toml | 2 +- 6 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77ccb5dc1d8..b3ddd5b8ad6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5677,9 +5677,9 @@ dependencies = [ [[package]] name = "webc" -version = "5.0.0-rc.4" +version = "5.0.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c0f30cd9a43164a816bfda46684546fa51e037ca834545c757d8bb6901a4845" +checksum = "418bfd8fc298ce60295203a6960d53af48c8e10c5a021a5e7db8bc06c4830148" dependencies = [ "anyhow", "base64 0.21.0", diff --git a/deny.toml b/deny.toml index aad99e01720..e8382d45698 100644 --- a/deny.toml +++ b/deny.toml @@ -64,7 +64,7 @@ git-fetch-with-cli = true # * Medium - CVSS Score 4.0 - 6.9 # * High - CVSS Score 7.0 - 8.9 # * Critical - CVSS Score 9.0 - 10.0 -#severity-threshold = +#severity-threshold = # This section is considered when running `cargo deny check licenses` # More documentation for the licenses section can be found here: @@ -111,6 +111,7 @@ confidence-threshold = 0.8 exceptions = [ # Each entry is the crate and version constraint, and its specific allow # list + { name = "webc", allow = ["BUSL-1.1"] } ] @@ -189,8 +190,8 @@ skip = [ { name = "itoa", version = "=0.4.8" }, { name = "object", version = "=0.27.1" }, ] -# Similarly to `skip` allows you to skip certain crates during duplicate -# detection. Unlike skip, it also includes the entire tree of transitive +# Similarly to `skip` allows you to skip certain crates during duplicate +# detection. Unlike skip, it also includes the entire tree of transitive # dependencies starting at the specified crate, up to a certain depth, which is # by default infinite skip-tree = [ diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 96e08b849cc..5902961c1b0 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -36,7 +36,7 @@ wasmer-wasi = { version = "=3.2.0-alpha.1", path = "../wasi", features = [ "host-vnet", ], optional = true } wasmer-types = { version = "=3.2.0-alpha.1", path = "../types" } -webc = { version = "5.0.0-rc.4", optional = true } +webc = { version = "5.0.0-rc.5", optional = true } enumset = "1.0.2" cfg-if = "1.0" lazy_static = "1.4" diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index a13aae6bef5..4de6342fa9f 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -86,7 +86,7 @@ regex = "1.6.0" toml = "0.5.9" url = "2.3.1" libc = { version = "^0.2", default-features = false } -webc = { version = "5.0.0-rc.4", optional = true } +webc = { version = "5.0.0-rc.5", optional = true } isatty = "0.1.9" dialoguer = "0.10.2" tldextract = "0.6.0" diff --git a/lib/registry/Cargo.toml b/lib/registry/Cargo.toml index 1d21b53fb08..72b741a1f85 100644 --- a/lib/registry/Cargo.toml +++ b/lib/registry/Cargo.toml @@ -31,7 +31,7 @@ tar = "0.4.38" flate2 = "1.0.24" semver = "1.0.14" lzma-rs = "0.2.0" -webc = { version = "5.0.0-rc.4", features = ["mmap"] } +webc = { version = "5.0.0-rc.5", features = ["mmap"] } hex = "0.4.3" tokio = "1.24.0" tempdir = "0.3.7" diff --git a/lib/vfs/Cargo.toml b/lib/vfs/Cargo.toml index 9ef336597d9..b848c09f26e 100644 --- a/lib/vfs/Cargo.toml +++ b/lib/vfs/Cargo.toml @@ -11,7 +11,7 @@ libc = { version = "^0.2", default-features = false, optional = true } thiserror = "1" tracing = { version = "0.1" } typetag = { version = "0.1", optional = true } -webc = { version = "5.0.0-rc.4", optional = true } +webc = { version = "5.0.0-rc.5", optional = true } slab = { version = "0.4" } derivative = "2.2.0" anyhow = { version = "1.0.66", optional = true }