From 3597b0f53d060b09b7e878e9c825321f053d189e Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Tue, 29 Oct 2024 23:20:24 +0900
Subject: [PATCH] chore(deps): update cargo (patch) (#9607)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [futures](https://rust-lang.github.io/futures-rs)
([source](https://redirect.github.com/rust-lang/futures-rs)) |
workspace.dependencies | patch | `0.3.30` -> `0.3.31` |
| [js-sys](https://rustwasm.github.io/wasm-bindgen/)
([source](https://redirect.github.com/rustwasm/wasm-bindgen/tree/HEAD/crates/js-sys))
| workspace.dependencies | patch | `0.3.70` -> `0.3.72` |
| [pathdiff](https://redirect.github.com/Manishearth/pathdiff) |
workspace.dependencies | patch | `0.2.1` -> `0.2.2` |
| [triomphe](https://redirect.github.com/Manishearth/triomphe) |
workspace.dependencies | patch | `0.1.13` -> `0.1.14` |
| [wasm-bindgen](https://rustwasm.github.io/)
([source](https://redirect.github.com/rustwasm/wasm-bindgen)) |
dependencies | patch | `0.2.93` -> `0.2.95` |
| [wasm-bindgen](https://rustwasm.github.io/)
([source](https://redirect.github.com/rustwasm/wasm-bindgen)) |
workspace.dependencies | patch | `0.2.93` -> `0.2.95` |
| [wasm-bindgen-futures](https://rustwasm.github.io/wasm-bindgen/)
([source](https://redirect.github.com/rustwasm/wasm-bindgen/tree/HEAD/crates/futures))
| workspace.dependencies | patch | `0.4.43` -> `0.4.45` |
---
### Release Notes
rust-lang/futures-rs (futures)
###
[`v0.3.31`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0331---2024-10-05)
[Compare
Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.30...0.3.31)
- Fix use after free of task in `FuturesUnordered` when dropped future
panics
([#2886](https://redirect.github.com/rust-lang/futures-rs/issues/2886))
- Fix soundness bug in `task::waker_ref`
([#2830](https://redirect.github.com/rust-lang/futures-rs/issues/2830))
This is a breaking change but allowed because it is soundness bug fix.
- Fix bugs in `AsyncBufRead::read_line` and `AsyncBufReadExt::lines`
([#2884](https://redirect.github.com/rust-lang/futures-rs/issues/2884))
- Fix parsing issue in `select!`/`select_biased!`
([#2832](https://redirect.github.com/rust-lang/futures-rs/issues/2832))
This is technically a breaking change as it will now reject a very odd
undocumented syntax that was previously accidentally accepted.
- Work around issue due to upstream `Waker::will_wake` change
([#2865](https://redirect.github.com/rust-lang/futures-rs/issues/2865))
- Add `stream::Iter::{get_ref,get_mut,into_inner}`
([#2875](https://redirect.github.com/rust-lang/futures-rs/issues/2875))
- Add `future::AlwaysReady`
([#2825](https://redirect.github.com/rust-lang/futures-rs/issues/2825))
- Relax trait bound on non-constructor methods of
`io::{BufReader,BufWriter}`
([#2848](https://redirect.github.com/rust-lang/futures-rs/issues/2848))
Manishearth/triomphe (triomphe)
###
[`v0.1.14`](https://redirect.github.com/Manishearth/triomphe/compare/v0.1.13...v0.1.14)
[Compare
Source](https://redirect.github.com/Manishearth/triomphe/compare/v0.1.13...v0.1.14)
rustwasm/wasm-bindgen (wasm-bindgen)
###
[`v0.2.95`](https://redirect.github.com/rustwasm/wasm-bindgen/blob/HEAD/CHANGELOG.md#0295)
[Compare
Source](https://redirect.github.com/rustwasm/wasm-bindgen/compare/0.2.94...0.2.95)
Released 2024-10-10
##### Added
- Added support for implicit discriminants in enums.
[#4152](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4152)
- Added support for `Self` in complex type expressions in methods.
[#4155](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4155)
##### Changed
- String enums are no longer generate TypeScript types.
[#4174](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4174)
##### Fixed
- Fixed generated setters from WebIDL interface attributes binding to
wrong JS method names.
[#4170](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4170)
- Fix string enums showing up in JS documentation and TypeScript
bindings without corresponding types.
[#4175](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4175)
***
###
[`v0.2.94`](https://redirect.github.com/rustwasm/wasm-bindgen/blob/HEAD/CHANGELOG.md#0294-YANKED)
[Compare
Source](https://redirect.github.com/rustwasm/wasm-bindgen/compare/0.2.93...0.2.94)
Released 2024-10-09
##### Added
- Added support for the WebAssembly `Tail Call` proposal.
[#4111](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4111)
- Add bindings for
`RTCPeerConnection.setConfiguration(RTCConfiguration)` method.
[#4105](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4105)
- Add bindings to `RTCRtpTransceiverDirection.stopped`.
[#4102](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4102)
- Added experimental support for `Symbol.dispose` via
`WASM_BINDGEN_EXPERIMENTAL_SYMBOL_DISPOSE`.
[#4118](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4118)
- Added bindings for the draft [WebRTC Encoded
Transform](https://www.w3.org/TR/webrtc-encoded-transform) spec.
[#4125](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4125)
- Added `Debug` implementation to `JsError`.
[#4136](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4136)
- Added support for `js_name` and `skip_typescript` attributes for
string enums.
[#4147](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4147)
- Added `unsupported` crate to `wasm_bindgen_test(unsupported = test)`
as a way of running tests on non-Wasm targets as well.
[#4150](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4150)
- Added additional bindings for methods taking buffer view types (e.g.
`&[u8]`) with corresponding JS types (e.g. `Uint8Array`).
[#4156](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4156)
- Added additional bindings for setters from WebIDL interface attributes
with applicaple parameter types of just `JsValue`.
[#4156](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4156)
##### Changed
- Implicitly enable reference type and multivalue transformations if the
module already makes use of the corresponding target features.
[#4133](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4133)
- Updated Gamepad API.
[#4134](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4134)
- Deprecated `Gamepad::display_id` and `GamepadHapticActuator::type_`.
[#4134](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4134)
- Removed `GamepadAxisMoveEvent`, `GamepadAxisMoveEventInit`,
`GamepadButtonEvent`, `GamepadButtonEventInit` and `GamepadServiceTest`,
which were seemingly never implemented by any JS environment.
[#4134](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4134)
- Changed `TextDecoder.decode()` `input` parameter type from `&mut [u8]`
to `&[u8]`.
[#4141](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4141)
- Updated the WebGPU API to the current draft as of 2024-10-07.
[#4145](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4145)
- Deprecated generated setters from WebIDL interface attribute taking
`JsValue` in favor of newer bindings with specific parameter types.
[#4156](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4156)
##### Fixed
- Fixed linked modules emitting snippet files when not using
`--split-linked-modules`.
[#4066](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4066)
- Fixed incorrect deprecation warning when passing no parameter into
`default()` (`init()`) or `initSync()`.
[#4074](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4074)
- Fixed many proc-macro generated `impl` blocks missing
`#[automatically_derived]`, affecting test coverage.
[#4078](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4078)
- Fixed negative `BigInt` values being incorrectly formatted with two
minus signs.
[#4082](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4082)
[#4088](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4088)
- Fixed emitted `package.json` structure to correctly specify its
dependencies
[#4091](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4091)
- Fixed returning `Option` now correctly has the `| undefined`
type in TS bindings.
[#4137](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4137)
- Fixed enum variant name collisions with object prototype fields.
[#4137](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4137)
- Fixed multiline doc comment alignment and remove empty ones entirely.
[#4135](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4135)
- Fixed `experimental-nodejs-module` target when used with
`#[wasm_bindgen(start)]`.
[#4093](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4093)
- Fixed error when importing very large JS files.
[#4146](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4146)
- Specify `"type": "module"` when deploying to nodejs-module
[#4092](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4092)
- Fixed string enums not generating TypeScript types.
[#4147](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4147)
- Bindings that take buffer view types (e.g. `&[u8]`) as parameters will
now correctly return a `Result` when they might not support a backing
`SharedArrayBuffer`. This only applies to new and unstable APIs, which
won't cause a breaking in the API.
[#4156](https://redirect.github.com/rustwasm/wasm-bindgen/pull/4156)
***
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
â™» **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/swc-project/swc).
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
---
Cargo.lock | 72 ++++++++++++++++++++++-----------------------
bindings/Cargo.lock | 28 +++++++++---------
2 files changed, 50 insertions(+), 50 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 1bfe5f66ef1..d03515ce191 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1484,9 +1484,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
[[package]]
name = "futures"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
+checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
dependencies = [
"futures-channel",
"futures-core",
@@ -1499,9 +1499,9 @@ dependencies = [
[[package]]
name = "futures-channel"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
+checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
dependencies = [
"futures-core",
"futures-sink",
@@ -1509,15 +1509,15 @@ dependencies = [
[[package]]
name = "futures-core"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
[[package]]
name = "futures-executor"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
+checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
dependencies = [
"futures-core",
"futures-task",
@@ -1526,15 +1526,15 @@ dependencies = [
[[package]]
name = "futures-io"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
+checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
[[package]]
name = "futures-macro"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
dependencies = [
"proc-macro2",
"quote",
@@ -1543,21 +1543,21 @@ dependencies = [
[[package]]
name = "futures-sink"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
+checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
[[package]]
name = "futures-task"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
[[package]]
name = "futures-util"
-version = "0.3.30"
+version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
dependencies = [
"futures-channel",
"futures-core",
@@ -2048,9 +2048,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
[[package]]
name = "js-sys"
-version = "0.3.70"
+version = "0.3.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
+checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
dependencies = [
"wasm-bindgen",
]
@@ -2791,9 +2791,9 @@ dependencies = [
[[package]]
name = "pathdiff"
-version = "0.2.1"
+version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
+checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"
[[package]]
name = "percent-encoding"
@@ -6099,9 +6099,9 @@ dependencies = [
[[package]]
name = "triomphe"
-version = "0.1.13"
+version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6631e42e10b40c0690bf92f404ebcfe6e1fdb480391d15f17cc8e96eeed5369"
+checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85"
dependencies = [
"serde",
"stable_deref_trait",
@@ -6461,9 +6461,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
+checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
dependencies = [
"cfg-if",
"once_cell",
@@ -6472,9 +6472,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
+checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
dependencies = [
"bumpalo",
"log",
@@ -6487,9 +6487,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-futures"
-version = "0.4.43"
+version = "0.4.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
+checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
dependencies = [
"cfg-if",
"js-sys",
@@ -6499,9 +6499,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
+checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@@ -6509,9 +6509,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
+checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
dependencies = [
"proc-macro2",
"quote",
@@ -6522,9 +6522,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
+checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
[[package]]
name = "wasm-encoder"
diff --git a/bindings/Cargo.lock b/bindings/Cargo.lock
index 884e27da720..0d931965389 100644
--- a/bindings/Cargo.lock
+++ b/bindings/Cargo.lock
@@ -1729,9 +1729,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
[[package]]
name = "js-sys"
-version = "0.3.70"
+version = "0.3.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
+checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
dependencies = [
"wasm-bindgen",
]
@@ -5515,9 +5515,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
+checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
dependencies = [
"cfg-if",
"once_cell",
@@ -5526,9 +5526,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-backend"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
+checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
dependencies = [
"bumpalo",
"log",
@@ -5541,9 +5541,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-futures"
-version = "0.4.43"
+version = "0.4.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
+checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
dependencies = [
"cfg-if",
"js-sys",
@@ -5553,9 +5553,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
+checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@@ -5563,9 +5563,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
+checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
dependencies = [
"proc-macro2",
"quote",
@@ -5576,9 +5576,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
-version = "0.2.93"
+version = "0.2.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
+checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
[[package]]
name = "wasm-encoder"