From 4d360789d0de2e2d030e64b8ef3af34cdcb4db21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jul 2023 09:23:44 +0900 Subject: [PATCH] [chore(cargo)](deps): Bump wit-component from 0.11.0 to 0.12.0 (#212) Bumps [wit-component](https://github.com/bytecodealliance/wasm-tools) from 0.11.0 to 0.12.0.
Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=wit-component&package-manager=cargo&previous-version=0.11.0&new-version=0.12.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 41 ++++++---------------------------------- homestar-wasm/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 36 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74b8581d..aa39f314 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2401,7 +2401,7 @@ dependencies = [ "wasmtime-component-util", "wasmtime-wasi", "wat", - "wit-component 0.11.0", + "wit-component", ] [[package]] @@ -6934,19 +6934,6 @@ dependencies = [ "leb128", ] -[[package]] -name = "wasm-metadata" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36e5156581ff4a302405c44ca7c85347563ca431d15f1a773f12c9c7b9a6cdc9" -dependencies = [ - "anyhow", - "indexmap 1.9.3", - "serde", - "wasm-encoder 0.29.0", - "wasmparser 0.107.0", -] - [[package]] name = "wasm-metadata" version = "0.9.0" @@ -7660,7 +7647,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9658ec54d4a3c9e2f079bc65a131093337595b595fbf82f805008469838cdea" dependencies = [ "anyhow", - "wit-component 0.12.0", + "wit-component", "wit-parser 0.9.1", ] @@ -7671,10 +7658,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21ae6a6198ba9765771b977e2af985a0d5ac71b59f999da5c4ee1c7bbd8ca8dc" dependencies = [ "heck", - "wasm-metadata 0.9.0", + "wasm-metadata", "wit-bindgen-core", "wit-bindgen-rust-lib", - "wit-component 0.12.0", + "wit-component", ] [[package]] @@ -7699,23 +7686,7 @@ dependencies = [ "wit-bindgen-core", "wit-bindgen-rust", "wit-bindgen-rust-lib", - "wit-component 0.12.0", -] - -[[package]] -name = "wit-component" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cbd4c7f8f400327c482c88571f373844b7889e61460650d650fc5881bb3575c" -dependencies = [ - "anyhow", - "bitflags 1.3.2", - "indexmap 1.9.3", - "log", - "wasm-encoder 0.29.0", - "wasm-metadata 0.8.0", - "wasmparser 0.107.0", - "wit-parser 0.8.0", + "wit-component", ] [[package]] @@ -7729,7 +7700,7 @@ dependencies = [ "indexmap 2.0.0", "log", "wasm-encoder 0.30.0", - "wasm-metadata 0.9.0", + "wasm-metadata", "wasmparser 0.108.0", "wit-parser 0.9.1", ] diff --git a/homestar-wasm/Cargo.toml b/homestar-wasm/Cargo.toml index b079e9d0..c13cd380 100644 --- a/homestar-wasm/Cargo.toml +++ b/homestar-wasm/Cargo.toml @@ -40,7 +40,7 @@ wasmtime = { version = "10.0", features = ["async", "component-model", "default" wasmtime-component-util = "10.0" wasmtime-wasi = { version = "10.0", features = ["tokio"] } wat = "1.0" -wit-component = "0.11" +wit-component = "0.12" [dev-dependencies] criterion = "0.5"