Skip to content

Commit

Permalink
Fix cargo deny
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Oct 28, 2022
1 parent acdf8f5 commit 37f88c9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ confidence-threshold = 0.8
exceptions = [
# Each entry is the crate and version constraint, and its specific allow
# list
#{ allow = ["Zlib"], name = "adler32", version = "*" },
{ allow = ["LicenseRef-LICENSE.txt"], name = "webc", version = "*" },
]

# Some crates don't have (easily) machine readable licensing information,
Expand Down
2 changes: 1 addition & 1 deletion lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ wasmer-middlewares = { version = "=3.0.0-rc.1", path = "../middlewares", optiona
wasmer-wasi = { version = "=3.0.0-rc.1", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=3.0.0-rc.1", path = "../types" }
wasmer-vfs = { version = "=3.0.0-rc.1", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
webc = { version = "3.0.0", optional = true }
webc = { version = "3.0.1", optional = true }
enumset = "1.0.2"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ regex = "1.6.0"
toml = "0.5.9"
url = "2.3.1"
nuke-dir = { version = "0.1.0", optional = true }
webc = { version = "3.0.0", optional = true }
webc = { version = "3.0.1", optional = true }

[build-dependencies]
chrono = { version = "^0.4", default-features = false, features = [ "std", "clock" ] }
Expand Down
2 changes: 1 addition & 1 deletion lib/vfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tracing = { version = "0.1" }
typetag = { version = "0.1", optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
slab = { version = "0.4", optional = true }
webc = { version = "3.0.0", optional = true }
webc = { version = "3.0.1", optional = true }
anyhow = { version = "1.0.66", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion lib/wasi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bincode = { version = "1.3", optional = true }
chrono = { version = "^0.4", default-features = false, features = [ "wasmbind", "std", "clock" ], optional = true }
derivative = { version = "^2" }
bytes = "1"
webc = { version = "3.0.0", optional = true, default-features = false, features = ["std", "mmap"] }
webc = { version = "3.0.1", optional = true, default-features = false, features = ["std", "mmap"] }
serde_cbor = { version = "0.11.2", optional = true }
nuke-dir = { version = "0.1.0", optional = true }
anyhow = { version = "1.0.66", optional = true }
Expand Down

0 comments on commit 37f88c9

Please sign in to comment.