From 1ffb02773d2598c0d5ba57989b6bd1fee4710c61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jul 2023 09:55:33 +0900 Subject: [PATCH] [chore(cargo)](deps): Bump wasmparser from 0.107.0 to 0.109.0 (#200) Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.107.0 to 0.109.0.
Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=wasmparser&package-manager=cargo&previous-version=0.107.0&new-version=0.109.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 | 32 +++++++++++++++++++++----------- homestar-wasm/Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b142bd35..e7540c1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1128,7 +1128,7 @@ dependencies = [ "itertools 0.10.5", "log", "smallvec", - "wasmparser", + "wasmparser 0.107.0", "wasmtime-types", ] @@ -2299,7 +2299,7 @@ dependencies = [ "tokio", "tracing", "wasi-common", - "wasmparser", + "wasmparser 0.109.0", "wasmtime", "wasmtime-component-util", "wasmtime-wasi", @@ -6436,7 +6436,7 @@ dependencies = [ "indexmap 1.9.3", "serde", "wasm-encoder", - "wasmparser", + "wasmparser 0.107.0", ] [[package]] @@ -6449,6 +6449,16 @@ dependencies = [ "semver", ] +[[package]] +name = "wasmparser" +version = "0.109.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bf9564f29de2890ee34406af52d2a92dec6ef044c8ddfc5add5db8dcfd36e6c" +dependencies = [ + "indexmap 2.0.0", + "semver", +] + [[package]] name = "wasmprinter" version = "0.2.59" @@ -6456,7 +6466,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc960b30b84abca377768f3c62cff3a1c74db8c0f6759ed581827da0bd3a3fed" dependencies = [ "anyhow", - "wasmparser", + "wasmparser 0.107.0", ] [[package]] @@ -6483,7 +6493,7 @@ dependencies = [ "serde", "serde_json", "target-lexicon", - "wasmparser", + "wasmparser 0.107.0", "wasmtime-cache", "wasmtime-component-macro", "wasmtime-component-util", @@ -6565,7 +6575,7 @@ dependencies = [ "object 0.30.4", "target-lexicon", "thiserror", - "wasmparser", + "wasmparser 0.107.0", "wasmtime-cranelift-shared", "wasmtime-environ", ] @@ -6602,7 +6612,7 @@ dependencies = [ "target-lexicon", "thiserror", "wasm-encoder", - "wasmparser", + "wasmparser 0.107.0", "wasmprinter", "wasmtime-component-util", "wasmtime-types", @@ -6705,7 +6715,7 @@ dependencies = [ "cranelift-entity", "serde", "thiserror", - "wasmparser", + "wasmparser 0.107.0", ] [[package]] @@ -6747,7 +6757,7 @@ dependencies = [ "gimli", "object 0.30.4", "target-lexicon", - "wasmparser", + "wasmparser 0.107.0", "wasmtime-cranelift-shared", "wasmtime-environ", "winch-codegen", @@ -6920,7 +6930,7 @@ dependencies = [ "regalloc2", "smallvec", "target-lexicon", - "wasmparser", + "wasmparser 0.107.0", "wasmtime-environ", ] @@ -7170,7 +7180,7 @@ dependencies = [ "log", "wasm-encoder", "wasm-metadata", - "wasmparser", + "wasmparser 0.107.0", "wit-parser", ] diff --git a/homestar-wasm/Cargo.toml b/homestar-wasm/Cargo.toml index 9f48ccf7..b079e9d0 100644 --- a/homestar-wasm/Cargo.toml +++ b/homestar-wasm/Cargo.toml @@ -34,7 +34,7 @@ stacker = "0.1" thiserror = { workspace = true } tracing = { workspace = true } wasi-common = "10.0" -wasmparser = "0.107" +wasmparser = "0.109" #wasmtime = { version = "10.0", features = ["async", "component-model", "default"] } wasmtime = { version = "10.0", features = ["async", "component-model", "default"] } wasmtime-component-util = "10.0"