Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the patch-updates group across 1 directory with 27 updates #6135

Merged
merged 1 commit into from
Aug 20, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 20, 2024

Bumps the patch-updates group with 20 updates in the / directory:

Package From To
arrayvec 0.7.4 0.7.6
bytemuck 1.16.3 1.17.0
indexmap 2.3.0 2.4.0
libc 0.2.155 0.2.158
serde 1.0.206 1.0.208
serde_json 1.0.124 1.0.125
js-sys 0.3.69 0.3.70
wasm-bindgen-futures 0.4.42 0.4.43
wasm-bindgen-test 0.3.42 0.3.43
web-sys 0.3.69 0.3.70
tokio 1.39.2 1.39.3
unicode-xid 0.2.4 0.2.5
syn 2.0.74 2.0.75
bytemuck_derive 1.7.0 1.7.1
cc 1.1.10 1.1.13
clap 4.5.15 4.5.16
cmake 0.1.50 0.1.51
flate2 1.0.31 1.0.32
is-terminal 0.4.12 0.4.13
xcursor 0.3.7 0.3.8

Updates arrayvec from 0.7.4 to 0.7.6

Release notes

Sourced from arrayvec's releases.

0.7.6

  • Fix no-std build #274

0.7.5

Changelog

Sourced from arrayvec's changelog.

0.7.6

  • Fix no-std build #274

0.7.5

Commits

Updates bytemuck from 1.16.3 to 1.17.0

Changelog

Sourced from bytemuck's changelog.

1.17.0

  • Makes the must_cast versions of the by-value and by-ref casts be const. The mut ref cast is unaffected for now (mut references aren't yet stable in const fn). This increases the MSRV of using that particular feature from 1.57 to 1.64.
Commits

Updates indexmap from 2.3.0 to 2.4.0

Changelog

Sourced from indexmap's changelog.

2.4.0

  • Added methods IndexMap::append and IndexSet::append, moving all items from one map or set into another, and leaving the original capacity for reuse.
Commits

Updates libc from 0.2.155 to 0.2.158

Release notes

Sourced from libc's releases.

0.2.158

Other

0.2.157

Added

Fixed

Changed

0.2.156

Added

Fixed

Changed

Removed

Other

  • Update or remove CI tests that have been failing
Changelog

Sourced from libc's changelog.

0.2.158 - 2024-08-19

Other

0.2.157 - 2024-08-17

Added

Fixed

Changed

0.2.156 - 2024-08-15

Added

Fixed

Changed

Removed

... (truncated)

Commits
  • c809c58 Merge pull request #3857 from rust-lang/release-plz-2024-08-19T05-21-04Z
  • 0d28de5 Update CHANGELOG.md
  • 284bd9e chore: release
  • 2682681 Merge pull request #3856 from tgross35/backport-wasi-fix
  • 71440ab [wasi] Add use core::iter::Iterator;
  • 6637dbe Merge pull request #3830 from rust-lang/release-plz-2024-08-15T20-50-10Z
  • 51d81e3 Update CHANGELOG.md
  • 217b2ab chore: release
  • 6d2b8a0 Merge pull request #3852 from tgross35/backport-onion
  • 64ee9df Merge pull request #3851 from tgross35/backport-romaine
  • Additional commits viewable in compare view

Updates serde from 1.0.206 to 1.0.208

Release notes

Sourced from serde's releases.

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)
Commits
  • 026e91a Release 1.0.208
  • bfbedac Merge pull request #2802 from jonhoo/flatten-unit-struct
  • 4036ff8 Support (de-)serializing flattened unit struct
  • 1b4da41 Release 1.0.207
  • f61d452 Touch up PR 2795
  • f986609 Merge pull request #2795 from Mingun/has-flatten-rework
  • 77a6a9d Take into account only not skipped flatten fields when choose serialization form
  • 547d843 Remove dead code - serialize_struct_as_map always called when cattrs.has_flat...
  • 005cb84 Fail with an understandable message is number of fields for serialization is ...
  • fd5b5e9 Correctly calculate has_flatten attribute in all cases for deserialization
  • Additional commits viewable in compare view

Updates serde_json from 1.0.124 to 1.0.125

Release notes

Sourced from serde_json's releases.

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)
Commits
  • 6130f9b Release 1.0.125
  • cc7a160 Touch up PR 1175
  • 0f942e5 Merge pull request 1175 from iex-rs/faster-backslash-u
  • d8921cd Merge pull request #1172 from iex-rs/faster-hex
  • b4bc643 Merge pull request #1176 from dtolnay/miriname
  • 94a2aad Improve job names for miri jobs
  • 8073fc1 Merge pull request #1174 from iex-rs/miri-on-ci
  • 96ae604 Correct WTF-8 parsing
  • 236cc82 Simplify unicode escape handling
  • 2f28d10 Use the same UTF-8/WTF-8 impl for surrogates
  • Additional commits viewable in compare view

Updates js-sys from 0.3.69 to 0.3.70

Commits

Updates wasm-bindgen from 0.2.92 to 0.2.93

Changelog

Sourced from wasm-bindgen's changelog.

0.2.93

Released 2024-08-13

Added

  • Allow exporting functions named default. Throw error in wasm-bindgen-cli if --target web and an exported symbol is named default. #3930

  • Added support for arbitrary expressions when using #[wasm_bindgen(typescript_custom_section)]. #3901

  • Implement From<NonNull<T>> for JsValue. #3877

  • Add method copy_within for TypedArray, add methods find_last,find_last_index for Array. #3888

  • Added support for returning Vecs from async functions. #3630

  • Added bindings for InputDeviceInfo and MediaTrackCapabilities. #3935

  • Add bindings for RTCRtpReceiver.getCapabilities(DOMString) method. #3941

  • Add bindings for VisualViewport. #3931

  • Add bindings for queueMicrotask. #3981

  • Add experimental bindings for User Agent Client Hints API #3989

  • Add bindings for FocusOptions. #3996

  • Add bindings for RTCRtpReceiver.jitterBufferTarget. #3968

  • Generate getters for all WebIDL dictionary types. #3993

  • Support for iterable in WebIDL. Gives entries, keys, values methods for regular and asynchronous, as well as for_each for regular, iterables. #3962

  • Add bindings for HTMLTableCellElement.abbr and scope properties.

... (truncated)

Commits

Updates wasm-bindgen-futures from 0.4.42 to 0.4.43

Commits

Updates wasm-bindgen-test from 0.3.42 to 0.3.43

Commits

Updates web-sys from 0.3.69 to 0.3.70

Commits

Updates tokio from 1.39.2 to 1.39.3

Release notes

Sourced from tokio's releases.

Tokio v1.39.3

1.39.3 (August 17th, 2024)

This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#6772)

#6772: tokio-rs/tokio#6772

Commits

Updates unicode-xid from 0.2.4 to 0.2.5

Commits

Updates syn from 2.0.74 to 2.0.75

Release notes

Sourced from syn's releases.

2.0.75

  • Automatically fill in missing turbofish when printing ExprPath and other paths in expression position (#1722)
Commits
  • d1746fe Release 2.0.75
  • b693682 Merge pull request #1722 from dtolnay/exprpath
  • e459ee7 Insert turbofish into paths in expression position
  • 3bb65aa Add mod-style printing for paths that cannot contain generic args
  • ae8c84a Handwrite ToTokens impl for Meta
  • 5dbfeae Name the expr_style argument at all call sites of path::parsing::qpath
  • See full diff in compare view

Updates bytemuck_derive from 1.7.0 to 1.7.1

Changelog

Sourced from bytemuck_derive's changelog.

1.7.1

  • Soundness Fix: The wrap/peel methods for owned value conversion, added to TransparentWrapper in 1.6, can cause a double-drop if used with types that impl Drop. The fix was simply to add a ManuallyDrop layer around the value before doing the transmute_copy that is used to wrap/peel. While this fix could technically be backported to the 1.6 series, since 1.7 is semver compatible anyway the 1.6 series has simply been yanked.

1.7

  • In response to [Unsafe Code Guidelines Issue #286](rust-lang/unsafe-code-guidelines#286), this version of Bytemuck has a Soundness-Required Breaking Change. This is "allowed" under Rust's backwards-compatibility guidelines, but it's still annoying of course so we're trying to keep the damage minimal.
    • The Reason: It turns out that pointer values should not have been Pod. More specifically, ptr as usize is not the same operation as calling transmute::<_, usize>(ptr).
    • LLVM has yet to fully sort out their story, but until they do, transmuting pointers can cause miscompilations. They may fix things up in the future, but we're not gonna just wait and have broken code in the mean time.
    • The Fix: The breaking change is that the Pod impls for *const T, *mut T, and Option<NonNull<T> are now gated behind the unsound_ptr_pod_impl feature, which is off by default.
    • You are strongly discouraged from using this feature, but if a dependency of yours doesn't work when you upgrade to 1.7 because it relied on pointer casting, then you might wish to temporarily enable the feature just to get that dependency to build. Enabled features are global across all users of a given semver compatible version, so if you enable the feature in your own crate, your dependency will also end up getting the feature too, and then it'll be able to compile.
    • Please move away from using this feature as soon as you can. Consider it to already be deprecated.
    • PR 65

1.6.3

  • Small goof with an errant ;, so PR 69 actually got things working on SPIR-V.

1.6.2

cargo upload goof! ignore this one.

1.6.1

  • DJMcNab did a fix so that the crate can build for SPIR-V PR 67

... (truncated)

Commits
  • faff804 chore: Release bytemuck_derive version 1.7.1
  • 7be8c67 derive changelog
  • bb62be5 Remove "dangling" terminology for zero-sized pointees. (#262)
  • 5eecd33 Make must_cast by-value and by-shared-ref functions const (#261)
  • 243302d Add bytemuck attribute to NoUninit derive (#259)
  • e1baf85 Fix box_bytes_zst test (#260)
  • 20f4a09 chore: Release bytemuck version 1.16.3
  • 9f7161c describe pr 256
  • 291a924 Allow casting between slices of ZSTs and slices of non-ZSTs in all cases. (#256)
  • 758774d chore: Release bytemuck version 1.16.2
  • Additional commits viewable in compare view

Updates cc from 1.1.10 to 1.1.13

Release notes

Sourced from cc's releases.

cc-v1.1.13

Other

  • Fix detect family: should detect emscripten as clang, closes #1185 (#1186)

cc-v1.1.12

Other

cc-v1.1.11

Other

  • Add support for parsing shell encoded *FLAGS (#1181)
  • Replace vector of tuples with BTreeMap which already is sorted and free of duplicates (#1177)
Changelog

Sourced from cc's changelog.

1.1.13 - 2024-08-16

Other

  • Fix detect family: should detect emscripten as clang, closes #1185 (#1186)

1.1.12 - 2024-08-15

Other

1.1.11 - 2024-08-14

Other

  • Add support for parsing shell encoded *FLAGS (#1181)
  • Replace vector of tuples with BTreeMap which already is sorted and free of duplicates (#1177)
Commits

Updates clap from 4.5.15 to 4.5.16

Release notes

Sourced from clap's releases.

v4.5.16

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Changelog

Sourced from clap's changelog.

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Commits

Updates cmake from 0.1.50 to 0.1.51

Release notes

Sourced from cmake's releases.

v0.1.51

Added

  • Add JOM generator support (#183)
  • Improve visionOS support (#209)
  • Use Generic for bare-metal systems (#187)

Fixed

  • Fix cross compilation on android armv7 and x86 (#186)
Changelog

Sourced from cmake's changelog.

0.1.51 - 2024-08-15

Added

  • Add JOM generator support (#183)
  • Improve visionOS support (#209)
  • Use Generic for bare-metal systems (#187)

Fixed

  • Fix cross compilation on android armv7 and x86 (#186)
Commits
  • f89c724 chore: release v0.1.51 (#215)
  • 63bde55 Use Generic for bare-metal systems (#187)
  • f84bd51 Fix cross compilation on android armv7 and x86 (#186)
  • fa0a83d Improve visionOS support (#209)
  • b5a2ed6 Merge pull request #196 from FlorianDenis/fdenis/bump_version
  • 6f7f254 Merge pull request #214 from tgross35/release-plz
  • d2aa0b3 Merge pull request #213 from tgross35/clippy
  • 7eee599 Bump cc to latest version
  • e482305 Fix Clippy errors and enable Clippy checks in CI
  • b9fef1d Add release-plz for automated releases
  • Additional commits viewable in compare view

Updates flate2 from 1.0.31 to 1.0.32

Release notes

Sourced from flate2's releases.

1.0.32 - turn panic into error

What's Changed

Fix

Other

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.31...1.0.32

Changelog

Sourced from flate2's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Commits
  • 367ec74 Merge pull request #423 from crazymerlyn/memerror
  • 6084e47 Bump version
  • d0fdac5 Return error instead of packing on Z_MEM_ERROR
  • 5d1ecf6 Merge pull request #422 from jongiddy/fix-main-ci
  • 35b4a63 Remove non-existent build in CI
  • d616177 Merge pull request #421 from jongiddy/test-minimal-version
  • 140b285 Check minimal version of Rust that compiles
  • 74b3c73 Merge pull request #419 from Byron/maintenance-guide
  • af8bcdb update maintenance guide with recent news
  • dc6cab4 Merge pull request #420 from oyvindln/update_miniz_oxide
  • Additional commits viewable in compare view

Updates is-terminal from 0.4.12 to 0.4.13

Commits

Updates serde_derive from 1.0.206 to 1.0.208

Release notes

Sourced from serde_derive's releases.

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)
Commits
  • 026e91a Release 1.0.208
  • bfbedac Merge pull request #2802 from jonhoo/flatten-unit-struct
  • 4036ff8 Support (de-)serializing flattened unit struct
  • 1b4da41 Release 1.0.207
  • f61d452 Touch up PR 2795
  • f986609 Merge pull request #2795 from Mingun/has-flatten-rework
  • 77a6a9d Take into account only not skipped flatten fields when choose serialization form
  • 547d843 Remove dead code - serialize_struct_as_map always called when cattrs.has_flat...
  • 005cb84 Fail with an understandable message is number of fields for serialization is ...
  • fd5b5e9 Correctly calculate has_flatten attribute in all cases for deserialization
  • Additional commits viewable in compare view

Updates wasm-bindgen-backend from 0.2.92 to 0.2.93

Changelog

Sourced from wasm-bindgen-backend's changelog.

0.2.93

Released 2024-08-13

Added

  • Allow exporting functions named default. Throw error in wasm-bindgen-cli if --target web and an exported symbol is named default. #3930

  • Added support for arbitrary expressions when using #[wasm_bindgen(typescript_custom_section)]. #3901

  • Implement From<NonNull<T>> for JsValue. #3877

  • Add method copy_within for TypedArray, add methods find_last,find_last_index for Array. #3888

  • Added support for returning Vecs from async functions. #3630

  • Added bindings for InputDeviceInfo and MediaTrackCapabilities. #3935

  • Add bindings for RTCRtpReceiver.getCapabilities(DOMString) method. #3941

  • Add bindings for VisualViewport. #3931

  • Add bindings for queueMicrotask. #3981

  • Add experimental bindings for User Agent Client Hints API #3989

  • Add bindin...

    Description has been truncated

…updates

Bumps the patch-updates group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [arrayvec](https://github.com/bluss/arrayvec) | `0.7.4` | `0.7.6` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.3` | `1.17.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.3.0` | `2.4.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.155` | `0.2.158` |
| [serde](https://github.com/serde-rs/serde) | `1.0.206` | `1.0.208` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.124` | `1.0.125` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.69` | `0.3.70` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.42` | `0.4.43` |
| [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.42` | `0.3.43` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.69` | `0.3.70` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.39.3` |
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | `0.2.4` | `0.2.5` |
| [syn](https://github.com/dtolnay/syn) | `2.0.74` | `2.0.75` |
| [bytemuck_derive](https://github.com/Lokathor/bytemuck) | `1.7.0` | `1.7.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.10` | `1.1.13` |
| [clap](https://github.com/clap-rs/clap) | `4.5.15` | `4.5.16` |
| [cmake](https://github.com/rust-lang/cmake-rs) | `0.1.50` | `0.1.51` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.31` | `1.0.32` |
| [is-terminal](https://github.com/sunfishcode/is-terminal) | `0.4.12` | `0.4.13` |
| [xcursor](https://github.com/esposm03/xcursor-rs) | `0.3.7` | `0.3.8` |



Updates `arrayvec` from 0.7.4 to 0.7.6
- [Release notes](https://github.com/bluss/arrayvec/releases)
- [Changelog](https://github.com/bluss/arrayvec/blob/master/CHANGELOG.md)
- [Commits](bluss/arrayvec@0.7.4...0.7.6)

Updates `bytemuck` from 1.16.3 to 1.17.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.16.3...v1.17.0)

Updates `indexmap` from 2.3.0 to 2.4.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.3.0...2.4.0)

Updates `libc` from 0.2.155 to 0.2.158
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.155...0.2.158)

Updates `serde` from 1.0.206 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.206...v1.0.208)

Updates `serde_json` from 1.0.124 to 1.0.125
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.124...1.0.125)

Updates `js-sys` from 0.3.69 to 0.3.70
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `wasm-bindgen` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-futures` from 0.4.42 to 0.4.43
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `wasm-bindgen-test` from 0.3.42 to 0.3.43
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `web-sys` from 0.3.69 to 0.3.70
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `tokio` from 1.39.2 to 1.39.3
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.39.2...tokio-1.39.3)

Updates `unicode-xid` from 0.2.4 to 0.2.5
- [Commits](unicode-rs/unicode-xid@v0.2.4...v0.2.5)

Updates `syn` from 2.0.74 to 2.0.75
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.74...2.0.75)

Updates `bytemuck_derive` from 1.7.0 to 1.7.1
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@bytemuck_derive-v1.7.0...bytemuck_derive-v1.7.1)

Updates `cc` from 1.1.10 to 1.1.13
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.1.10...cc-v1.1.13)

Updates `clap` from 4.5.15 to 4.5.16
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.15...clap_complete-v4.5.16)

Updates `cmake` from 0.1.50 to 0.1.51
- [Release notes](https://github.com/rust-lang/cmake-rs/releases)
- [Changelog](https://github.com/rust-lang/cmake-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/cmake-rs@0.1.50...v0.1.51)

Updates `flate2` from 1.0.31 to 1.0.32
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/flate2-rs@1.0.31...1.0.32)

Updates `is-terminal` from 0.4.12 to 0.4.13
- [Commits](sunfishcode/is-terminal@v0.4.12...v0.4.13)

Updates `serde_derive` from 1.0.206 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.206...v1.0.208)

Updates `wasm-bindgen-backend` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-macro` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-macro-support` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-shared` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-test-macro` from 0.3.42 to 0.3.43
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `xcursor` from 0.3.7 to 0.3.8
- [Commits](https://github.com/esposm03/xcursor-rs/commits)

---
updated-dependencies:
- dependency-name: arrayvec
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: js-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: web-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: unicode-xid
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: bytemuck_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: cmake
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: flate2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: is-terminal
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-backend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-macro-support
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-shared
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: wasm-bindgen-test-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: xcursor
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team August 20, 2024 16:24
@dependabot dependabot bot requested a review from a team as a code owner August 20, 2024 16:24
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Aug 20, 2024
@cwfitzgerald cwfitzgerald merged commit 70155aa into trunk Aug 20, 2024
25 checks passed
@cwfitzgerald cwfitzgerald deleted the dependabot/cargo/patch-updates-1881ac96ed branch August 20, 2024 16:51
@MarijnS95 MarijnS95 mentioned this pull request Aug 24, 2024
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant