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

chore(deps): bump the patch-updates group across 1 directory with 45 updates #6640

Merged
merged 2 commits into from
Dec 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 2, 2024

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

Package From To
anyhow 1.0.92 1.0.93
bytemuck 1.19.0 1.20.0
ctor 0.2.8 0.2.9
futures-lite 2.4.0 2.5.0
indexmap 2.6.0 2.7.0
libc 0.2.161 0.2.167
libloading 0.8.5 0.8.6
serde 1.0.214 1.0.215
serde_json 1.0.132 1.0.133
mach-dxcompiler-rs 0.1.2+2024.11.22-df583a3.1 0.1.3+2024.11.22-df583a3.1
wasm-bindgen 0.2.95 0.2.97
web-sys 0.3.72 0.3.74
tokio 1.41.0 1.41.1
arbitrary 1.3.2 1.4.1
syn 2.0.87 2.0.90
allocator-api2 0.2.18 0.2.21
anstream 0.6.17 0.6.18
bytes 1.8.0 1.9.0
cc 1.1.34 1.2.2
clap 4.5.20 4.5.21
clap_lex 0.7.2 0.7.3
errno 0.3.9 0.3.10
fastrand 2.1.1 2.2.0
flate2 1.0.34 1.0.35
itoa 1.0.11 1.0.14
mio 1.0.2 1.0.3
polling 3.7.3 3.7.4
rustix 0.38.38 0.38.41
socket2 0.5.7 0.5.8
tracing 0.1.40 0.1.41
tracing-subscriber 0.3.18 0.3.19
tracy-client-sys 0.24.1 0.24.2
ttf-parser 0.25.0 0.25.1
unicode-ident 1.0.13 1.0.14
url 2.5.2 2.5.4
xml-rs 0.8.22 0.8.23

Updates anyhow from 1.0.92 to 1.0.93

Release notes

Sourced from anyhow's releases.

1.0.93

  • Update dev-dependencies to thiserror v2
Commits
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • See full diff in compare view

Updates bytemuck from 1.19.0 to 1.20.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.20

  • New functions to allocate zeroed Arc and Rc. Requires Rust 1.82
  • TransparentWrapper impls for core::cmp::Reverse and core::num::Saturating.
  • internal: Simplified the library's fill_zeroes calls to write_bytes

1.19

  • Adds the #[track_caller] attribute to functions which may panic.

1.18

  • Adds the latest_stable_rust cargo feature, which is a blanket feature that turns all other features on that are both sound and compatible with Stable rust.

1.17.1

  • Adds #[repr(C)] to the union Transmute<A, B> type that's used internally for most of the transmutations.

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.

1.16.3

  • Fully described in Lokathor/bytemuck#256, This makes casting slices to/from ZST elements more consistent between the crate's core module and other modules.

1.16.2

  • Fixes potential UB where BoxBytes could attempt to free a dangling pointer if the Layout is zero sized. This type was introduced in 1.14.1, so that version and the others up to and including 1.16.1 are now yanked for safety.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.

1.16.0

  • Adds a const_zeroed feature (MSRV 1.75) which puts a zeroed fn at the crate root. This is just like the Zeroable::zeroed method, but as a const fn.

... (truncated)

Commits
  • 9bf993b chore: Release bytemuck version 1.20.0
  • 0a995ff changelog
  • 1400815 Improve fill_zeroes' use of ptr::write_bytes (#284)
  • 13f4ae0 Add functions to allocate zeroed Arc and Rc (#283)
  • af8d110 More TransparentWrapper impls (core::cmp::Reverse and `core::num::Saturat...
  • 79a15d0 Remove incorrect spanned quote usage (#279)
  • See full diff in compare view

Updates ctor from 0.2.8 to 0.2.9

Commits

Updates futures-lite from 2.4.0 to 2.5.0

Release notes

Sourced from futures-lite's releases.

v2.5.0

  • Remove Unpin bound from the Lines I/O adapter. (#113)
Changelog

Sourced from futures-lite's changelog.

Version 2.5.0

  • Remove Unpin bound from the Lines I/O adapter. (#113)
Commits

Updates indexmap from 2.6.0 to 2.7.0

Changelog

Sourced from indexmap's changelog.

2.7.0 (2024-11-30)

  • Added methods Entry::insert_entry and VacantEntry::insert_entry, returning an OccupiedEntry after insertion.
Commits

Updates libc from 0.2.161 to 0.2.167

Release notes

Sourced from libc's releases.

0.2.167

Added

Fixed

  • Fix the build with rustc-dep-of-std rust-lang/libc#4158
  • Wasi: Add back unsafe block for clockid_t static variables (#4157)

Cleanup

Other

Removed

  • Remove one unused import after the edition 2021 bump

0.2.166

Fixed

This release resolves two cases of unintentional breakage from the previous release:

  • Revert removal of array size hacks #4150
  • Ensure const extern functions are always enabled #4151

0.2.165

Added

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.167 - 2024-11-28

Added

Fixed

  • Fix the build with rustc-dep-of-std rust-lang/libc#4158
  • Wasi: Add back unsafe block for clockid_t static variables (#4157)

Cleanup

Other

Removed

  • Remove one unused import after the edition 2021 bump

0.2.166 - 2024-11-26

Fixed

This release resolves two cases of unintentional breakage from the previous release:

  • Revert removal of array size hacks #4150
  • Ensure const extern functions are always enabled #4151

0.2.165 - 2024-11-25

Added

... (truncated)

Commits
  • 3831e59 chore: release v0.2.167
  • 7cbac14 Merge pull request #4167 from tgross35/backport-fix-rustc-dep-of-std
  • 70b1487 Alow static_mut_refs with rustc-dep-of-std
  • 96db1f4 ci: test with rustc-dep-of-std
  • 4ca22fa Fix the build with rustc-dep-of-std
  • 0acb8d6 Merge pull request #4166 from tgross35/backport-crate-prelude
  • b52375d Add a .git-blame-ignore-revs entry for adding the prelude
  • 108310d Make use of the crate's prelude to replace individual imports
  • 877b6f6 Create an internal prelude
  • 1abd74b trusty: Add intptr_t and uintptr_t
  • Additional commits viewable in compare view

Updates libloading from 0.8.5 to 0.8.6

Commits
  • fa0694e fix CI and prepare a release
  • e4b159b fix: make Error::source return GetModuleHandleExW source
  • See full diff in compare view

Updates serde from 1.0.214 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates serde_json from 1.0.132 to 1.0.133

Release notes

Sourced from serde_json's releases.

v1.0.133

  • Implement From<[T; N]> for serde_json::Value (#1215)
Commits
  • 0903de4 Release 1.0.133
  • 2b65ca0 Merge pull request #1215 from dtolnay/fromarray
  • 4e5f985 Implement From<[T; N]> for Value
  • 2ccb5b6 Disable question_mark clippy lint in lexical test
  • a11f5f2 Resolve unnecessary_map_or clippy lints
  • 07f280a Wrap PR 1213 to 80 columns
  • 75ed447 Merge pull request #1213 from djmitche/safety-comment
  • 73011c0 Add a safety comment to unsafe block
  • be2198a Prevent upload-artifact step from causing CI failure
  • 7cce517 Raise minimum version for preserve_order feature to Rust 1.65
  • Additional commits viewable in compare view

Updates mach-dxcompiler-rs from 0.1.2+2024.11.22-df583a3.1 to 0.1.3+2024.11.22-df583a3.1

Commits

Updates wasm-bindgen from 0.2.95 to 0.2.97

Changelog

Sourced from wasm-bindgen's changelog.

0.2.97

Released 2024-11-30

Fixed

  • Fixed js-sys and wasm-bindgen-futures relying on internal paths of wasm-bindgen that are not crate feature additive. #4305

0.2.96

Released 2024-11-29

Added

  • Added support for the HTMLOrSVGElement mixin, which is used for all interfaces deriving from Element. #4143

  • Added bindings for MathMLElement. #4143

  • Added JSDoc type annotations to C-style enums. #4192

  • Added support for C-style enums with negative discriminants. #4204

  • Added bindings for MediaStreamTrack.getCapabilities. #4236

  • Added WASM ABI support for u128 and i128 #4222

  • Added support for the wasm32v1-none target. #4277

  • Added support for no_std to js-sys, web-sys, wasm-bindgen-futures and wasm-bindgen-test. #4277

  • Added support for no_std to link_to!, static_string (via thread_local_v2) and throw. #4277

  • Added environment variables to configure tests: WASM_BINDGEN_USE_BROWSER, WASM_BINDGEN_USE_DEDICATED_WORKER, WASM_BINDGEN_USE_SHARED_WORKER WASM_BINDGEN_USE_SERVICE_WORKER, WASM_BINDGEN_USE_DENO and WASM_BINDGEN_USE_NODE_EXPERIMENTAL. The use of wasm_bindgen_test_configure! will overwrite any environment variable. #4295

Changed

  • String enums now generate private TypeScript types but only if used.

... (truncated)

Commits

Updates web-sys from 0.3.72 to 0.3.74

Commits

Updates tokio from 1.41.0 to 1.41.1

Release notes

Sourced from tokio's releases.

Tokio v1.41.1

1.41.1 (Nov 7th, 2024)

Fixed

  • metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • net: display net requirement for net::UdpSocket in docs (#6938)
  • net: fix typo in TcpStream internal comment (#6944)

#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944

Commits
  • bb7ca75 chore: prepare Tokio v1.41.1 (#6959)
  • 4a34b77 metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • 8897885 docs: fix mismatched backticks in CONTRIBUTING.md (#6951)
  • 0dbdd19 ci: update cargo-check-external-types to 0.1.13 (#6949)
  • 94e55c0 net: fix typo in TcpStream internal comment (#6944)
  • 4468f27 metrics: fixed flaky worker_steal_count test (#6932)
  • 070a825 metrics: removed race condition from global_queue_depth_multi_thread test (#6...
  • 946401c net: display net requirement for net::UdpSocket in docs (#6938)
  • 0c01fd2 ci: use patched version of cargo-check-external-types to fix CI failure (#6937)
  • ebe2416 ci: use cargo deny (#6931)
  • See full diff in compare view

Updates arbitrary from 1.3.2 to 1.4.1

Changelog

Sourced from arbitrary's changelog.

Unreleased

Released YYYY-MM-DD.

Added

  • TODO (or remove section if none)

Changed

  • TODO (or remove section if none)

Deprecated

  • TODO (or remove section if none)

Removed

  • TODO (or remove section if none)

Fixed

  • TODO (or remove section if none)

Security

  • TODO (or remove section if none)

1.4.0

Released 2024-10-30.

Added

  • Added an Arbitrary implementation for PhantomPinned.
  • Added the Unstructured::choose_iter helper method.
  • Added #[arbitrary(skip)] for enum variants in the derive macro.
  • Added the Arbitrary::try_size_hint trait method.

Changed

  • Implement Arbitrary for PhantomData<A> even when A does not implement Arbitrary and when A is ?Sized.
  • Make usize's underlying encoding independent of machine word size so that corpora are more portable.

Fixed

... (truncated)

Commits
  • c22d7c8 Arbitrary-derive 1.4.1
  • 690db06 Merge pull request #204 from djc/msrv
  • 6cbaf48 Merge pull request #205 from Manishearth/fq-result
  • de2becf Use fully qualified path for Result when generated by macro
  • 4f5967b Bump version for release
  • a5dfc7e Check stated MSRV in CI
  • da62b03 Add lifetime bound for trait impl as required on older toolchains
  • f643527 Use std::error::Error for compatibility with older toolchains
  • 5b86c44 Bump to 1.4.0
  • 1cc0e46 Merge pull request #185 from sosthene-nitrokey/wide-recursive
  • Additional commits viewable in compare view

Updates syn from 2.0.87 to 2.0.90

Release notes

Sourced from syn's releases.

2.0.90

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#1786)

2.0.89

2.0.88

  • Improve error recovery in parse_str (#1783)
Commits
  • ac5b41c Release 2.0.90
  • 9037abb Merge pull request #1787 from dtolnay/unparenthesizetest
  • 1a549c0 Improve test_unparenthesize to catch more false negatives
  • f9aa206 Merge pull request #1786 from dtolnay/fieldcall
  • 1445ccf Do not parenthesize unnamed tuple struct fields in call
  • 48d0101 Fix parenthesization of field expressions in function calls
  • 0e5c568 Add test of parentheses needed in call of field
  • 1cf735e Merge pull request #1785 from dtolnay/attrprecedence
  • 204c155 Lower precedence of expressions containing outer attrs
  • 401399f Add test of attr precedence inside subexpression
  • Additional commits viewable in compare view

Updates allocator-api2 from 0.2.18 to 0.2.21

Commits

Updates anstream from 0.6.17 to 0.6.18

Commits
  • fabe0c3 chore: Release
  • 762ca76 docs: Update changelog
  • d364ac4 Merge pull request #229 from epage/cfg
  • ad3f458 fix(stream): Respect 'test' feature
  • 0b8d105 fix(stream): Refer to correct stream on panic
  • 69cf6c9 refactor(stream): Pull out test macro body
  • c78b3c1 refactor(stream): Be extra clear that macros mod is not for use
  • ab37812 chore(deps): Update compatible (dev) (#226)
  • 7c48196 Merge pull request #227 from rust-cli/renovate/stable-1.x
  • a28405f style: Make clippy happy
  • Additional commits viewable in compare view

Updates bytes from 1.8.0 to 1.9.0

Release notes

Sourced from bytes's releases.

Bytes v1.9.0

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

  • Replace BufMut::put with BufMut::put_slice in Writer impl (#745)
  • Rename hex_impl! to fmt_impl! and reuse it for fmt::Debug (#743)
Changelog

Sourced from bytes's changelog.

1.9.0 (November 27, 2024)

Added

  • Add Bytes::from_owner to enable externally-allocated memory (#742)

Documented

  • Fix typo in Buf::chunk() comment (#744)

Internal changes

  • Replace BufMut::put with BufMut::put_slice in Writer impl (#745)
  • Rename hex_impl! to fmt_impl! and reuse it for fmt::Debug (#743)
Commits

Updates cc from 1.1.34 to 1.2.2

Release notes

Sourced from cc's releases.

cc-v1.2.2

Other

  • Inherit flags from rustc (#1279)
  • Add support for using sccache wrapper with cuda/nvcc (#1304)
  • Fix msvc stdout not shown on error (#1303)
  • Regenerate target info (#1301)
  • Fix compilation of C++ code for armv7-unknown-linux-gnueabihf (#1298)
  • Fetch target info from Cargo even if Build::target is manually set (#1299)
  • Fix two files with different extensions having the same object name (#1295)
  • Allow disabling cc's ability to compile via env var CC_FORCE_DISABLE (#1292)
  • Regenerate target info (#1293)

cc-v1.2.1

Other

  • When invoking cl -?, set stdin to null (#1288)

cc-v1.2.0

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)

cc-v1.1.37

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

cc-v1.1.36

Other

  • Fix CUDA build with clang++. (#1273)

cc-v1.1.35

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)
  • Use -windows-gnu for all UEFI targets (#1264)
Changelog

Sourced from cc's changelog.

1.2.2 - 2024-11-29

Other

  • Inherit flags from rustc (#1279)
  • Add support for using sccache wrapper with cuda/nvcc (#1304)
  • Fix msvc stdout not shown on error (#1303)
  • Regenerate target info (#1301)
  • Fix compilation of C++ code for armv7-unknown-linux-gnueabihf (#1298)
  • Fetch target info from Cargo even if Build::target is manually set (#1299)
  • Fix two files with different extensions having the same object name (#1295)
  • Allow disabling cc's ability to compile via env var CC_FORCE_DISABLE (#1292)
  • Regenerate target info (#1293)

1.2.1 - 2024-11-14

Other

  • When invoking cl -?, set stdin to null (#1288)

1.2.0 - 2024-11-11

Added

  • add i686-pc-windows-gnullvm prefix detection (#1283)

Other

  • Allow only specifying the architecture (#1285)
  • Fix WASM vs. WASI options (#1284)

1.1.37 - 2024-11-08

Other

  • Use relative directory for obj files hash (#1270)
  • Regenerate target info (#1280)

1.1.36 - 2024-11-05

Other

  • Fix CUDA build with clang++. (#1273)

1.1.35 - 2024-11-04

Other

  • Remove support for FRC (#1268)
  • Do not add -fPIC by default on UEFI targets (#1263)

... (truncated)

Commits
  • 5daf14e chore: release v1.2.2 (#1306)
  • afb6d60 build: Inherit flags from rustc (#1279)
  • 4f312e3 Add support for using sccache wrapper with cuda/nvcc (#1304)
  • f770d56 Fix msvc stdout not shown on error (#1303)
  • 1eefa74 CI: Avoid running scheduled jobs on forks (#1302)
  • 11f0f2e Regenerate target info (#1301)
  • 5e3c257 Fix compilation of C++ code for armv7-unknown-linux-gnueabihf (#1298)
  • 6a1def4 Fix: Fetch target info from Cargo even if Build::target is manually set (#1...
  • a8f0611 Fix two files with different extensions having the same object name (#1295)
  • 29d6ca1 Allow disabling cc's ability to compile via env var CC_FORCE_DISABLE (#1292)
  • Additional commits viewable in compare view

Updates clap from 4.5.20 to 4.5.21

Release notes

Sourced from clap's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits
  • 03d7226 chore: Release
  • 3df70fb docs: Update changelog
  • 3266c36 Merge pull request #5691 from epage/custom
  • 951762d feat(complete): Allow any OsString-compatible type to be a CompletionCandidate
  • bb6493e feat(complete): Offer - as a path option
  • 27b348d refactor(complete): Simplify ArgValueCandidates code
  • 49b8108 feat(complete): Add PathCompleter
  • 82a360a feat(complete): Add ArgValueCompleter
  • 47aedc6 fix(complete): Ensure paths are sorted
  • 431e2bc test(complete): Ensure ArgValueCandidates get filtered
  • Additional commits viewable in compare view

Updates clap_builder from 4.5.20 to 4.5.21

Release notes

Sourced from clap_builder's releases.

v4.5.21

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Changelog

Sourced from clap_builder's changelog.

[4.5.21] - 2024-11-13

Fixes

  • (parser) Ensure defaults are filled in on error with ignore_errors(true)
Commits

…updates

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

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.92` | `1.0.93` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.19.0` | `1.20.0` |
| [ctor](https://github.com/mmastrac/rust-ctor) | `0.2.8` | `0.2.9` |
| [futures-lite](https://github.com/smol-rs/futures-lite) | `2.4.0` | `2.5.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.6.0` | `2.7.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.161` | `0.2.167` |
| [libloading](https://github.com/nagisa/rust_libloading) | `0.8.5` | `0.8.6` |
| [serde](https://github.com/serde-rs/serde) | `1.0.214` | `1.0.215` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.133` |
| [mach-dxcompiler-rs](https://github.com/DouglasDwyer/mach-dxcompiler-rs) | `0.1.2+2024.11.22-df583a3.1` | `0.1.3+2024.11.22-df583a3.1` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.95` | `0.2.97` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.72` | `0.3.74` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.0` | `1.41.1` |
| [arbitrary](https://github.com/rust-fuzz/arbitrary) | `1.3.2` | `1.4.1` |
| [syn](https://github.com/dtolnay/syn) | `2.0.87` | `2.0.90` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.18` | `0.2.21` |
| [anstream](https://github.com/rust-cli/anstyle) | `0.6.17` | `0.6.18` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.8.0` | `1.9.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.34` | `1.2.2` |
| [clap](https://github.com/clap-rs/clap) | `4.5.20` | `4.5.21` |
| [clap_lex](https://github.com/clap-rs/clap) | `0.7.2` | `0.7.3` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.9` | `0.3.10` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.1.1` | `2.2.0` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.34` | `1.0.35` |
| [itoa](https://github.com/dtolnay/itoa) | `1.0.11` | `1.0.14` |
| [mio](https://github.com/tokio-rs/mio) | `1.0.2` | `1.0.3` |
| [polling](https://github.com/smol-rs/polling) | `3.7.3` | `3.7.4` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.38` | `0.38.41` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.7` | `0.5.8` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.40` | `0.1.41` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |
| [tracy-client-sys](https://github.com/nagisa/rust_tracy_client) | `0.24.1` | `0.24.2` |
| [ttf-parser](https://github.com/harfbuzz/ttf-parser) | `0.25.0` | `0.25.1` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.13` | `1.0.14` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.4` |
| [xml-rs](https://github.com/kornelski/xml-rs) | `0.8.22` | `0.8.23` |



Updates `anyhow` from 1.0.92 to 1.0.93
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.92...1.0.93)

Updates `bytemuck` from 1.19.0 to 1.20.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.19.0...v1.20.0)

Updates `ctor` from 0.2.8 to 0.2.9
- [Commits](https://github.com/mmastrac/rust-ctor/commits)

Updates `futures-lite` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/smol-rs/futures-lite/releases)
- [Changelog](https://github.com/smol-rs/futures-lite/blob/master/CHANGELOG.md)
- [Commits](smol-rs/futures-lite@v2.4.0...v2.5.0)

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

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

Updates `libloading` from 0.8.5 to 0.8.6
- [Commits](nagisa/rust_libloading@0.8.5...0.8.6)

Updates `serde` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.214...v1.0.215)

Updates `serde_json` from 1.0.132 to 1.0.133
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.133)

Updates `mach-dxcompiler-rs` from 0.1.2+2024.11.22-df583a3.1 to 0.1.3+2024.11.22-df583a3.1
- [Commits](https://github.com/DouglasDwyer/mach-dxcompiler-rs/commits)

Updates `wasm-bindgen` from 0.2.95 to 0.2.97
- [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.95...0.2.97)

Updates `web-sys` from 0.3.72 to 0.3.74
- [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.41.0 to 1.41.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.41.0...tokio-1.41.1)

Updates `arbitrary` from 1.3.2 to 1.4.1
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.1)

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

Updates `allocator-api2` from 0.2.18 to 0.2.21
- [Changelog](https://github.com/zakarumych/allocator-api2/blob/main/CHANGELOG.md)
- [Commits](zakarumych/allocator-api2@v0.2.18...v0.2.21)

Updates `anstream` from 0.6.17 to 0.6.18
- [Commits](rust-cli/anstyle@anstream-v0.6.17...anstream-v0.6.18)

Updates `bytes` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.8.0...v1.9.0)

Updates `cc` from 1.1.34 to 1.2.2
- [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.34...cc-v1.2.2)

Updates `clap` from 4.5.20 to 4.5.21
- [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.20...clap_complete-v4.5.21)

Updates `clap_builder` from 4.5.20 to 4.5.21
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.20...v4.5.21)

Updates `clap_lex` from 0.7.2 to 0.7.3
- [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_lex-v0.7.2...clap_lex-v0.7.3)

Updates `derive_arbitrary` from 1.3.2 to 1.4.1
- [Changelog](https://github.com/rust-fuzz/arbitrary/blob/main/CHANGELOG.md)
- [Commits](rust-fuzz/arbitrary@v1.3.2...v1.4.1)

Updates `errno` from 0.3.9 to 0.3.10
- [Release notes](https://github.com/lambda-fairy/rust-errno/releases)
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](lambda-fairy/rust-errno@v0.3.9...v0.3.10)

Updates `fastrand` from 2.1.1 to 2.2.0
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](smol-rs/fastrand@v2.1.1...v2.2.0)

Updates `flate2` from 1.0.34 to 1.0.35
- [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.34...1.0.35)

Updates `itoa` from 1.0.11 to 1.0.14
- [Release notes](https://github.com/dtolnay/itoa/releases)
- [Commits](dtolnay/itoa@1.0.11...1.0.14)

Updates `mio` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.0.2...v1.0.3)

Updates `polling` from 3.7.3 to 3.7.4
- [Release notes](https://github.com/smol-rs/polling/releases)
- [Changelog](https://github.com/smol-rs/polling/blob/master/CHANGELOG.md)
- [Commits](smol-rs/polling@v3.7.3...v3.7.4)

Updates `proc-macro2` from 1.0.89 to 1.0.92
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.89...1.0.92)

Updates `rustix` from 0.38.38 to 0.38.41
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md)
- [Commits](bytecodealliance/rustix@v0.38.38...v0.38.41)

Updates `serde_derive` from 1.0.214 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.214...v1.0.215)

Updates `socket2` from 0.5.7 to 0.5.8
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/socket2/commits)

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

Updates `tracing-core` from 0.1.32 to 0.1.33
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-core-0.1.32...tracing-core-0.1.33)

Updates `tracing-subscriber` from 0.3.18 to 0.3.19
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.19)

Updates `tracy-client-sys` from 0.24.1 to 0.24.2
- [Commits](nagisa/rust_tracy_client@tracy-client-sys-v0.24.1...tracy-client-sys-v0.24.2)

Updates `ttf-parser` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/harfbuzz/ttf-parser/releases)
- [Changelog](https://github.com/harfbuzz/ttf-parser/blob/main/CHANGELOG.md)
- [Commits](harfbuzz/ttf-parser@v0.25.0...v0.25.1)

Updates `unicode-ident` from 1.0.13 to 1.0.14
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.13...1.0.14)

Updates `url` from 2.5.2 to 2.5.4
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.5.2...v2.5.4)

Updates `wasm-bindgen-backend` from 0.2.95 to 0.2.97
- [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.95...0.2.97)

Updates `wasm-bindgen-macro` from 0.2.95 to 0.2.97
- [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.95...0.2.97)

Updates `wasm-bindgen-macro-support` from 0.2.95 to 0.2.97
- [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.95...0.2.97)

Updates `wasm-bindgen-shared` from 0.2.95 to 0.2.97
- [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.95...0.2.97)

Updates `xml-rs` from 0.8.22 to 0.8.23
- [Changelog](https://github.com/kornelski/xml-rs/blob/main/Changelog.md)
- [Commits](kornelski/xml-rs@0.8.22...0.8.23)

---
updated-dependencies:
- dependency-name: anyhow
  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: ctor
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: futures-lite
  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: libloading
  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: mach-dxcompiler-rs
  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: 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: arbitrary
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: allocator-api2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: anstream
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: bytes
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: clap
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap_builder
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: clap_lex
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: derive_arbitrary
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: fastrand
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: flate2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: itoa
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: mio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: polling
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: rustix
  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: socket2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tracing
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tracing-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tracing-subscriber
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tracy-client-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: ttf-parser
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: url
  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: xml-rs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners December 2, 2024 05:04
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 2, 2024
@cwfitzgerald cwfitzgerald merged commit 74fe56f into trunk Dec 2, 2024
27 checks passed
@cwfitzgerald cwfitzgerald deleted the dependabot/cargo/patch-updates-753b06207b branch December 2, 2024 05:50
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