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 cargo-minor group across 1 directory with 31 updates #263

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 6, 2025

Bumps the cargo-minor group with 31 updates in the / directory:

Package From To
naga 23.0.0 23.1.0
clap 4.5.21 4.5.23
anyhow 1.0.93 1.0.95
bytemuck 1.20.0 1.21.0
chrono 0.4.38 0.4.39
js-sys 0.3.72 0.3.74
web-sys 0.3.72 0.3.74
serde 1.0.215 1.0.217
url 2.5.2 2.5.4
tokio 1.41.1 1.42.0
rfd 0.15.0 0.15.2
quick-xml 0.36.2 0.37.2
serde_json 1.0.133 1.0.134
fluent-templates 0.11.0 0.12.0
png 0.17.14 0.17.16
tracy-client 0.17.4 0.18.0
wasm-bindgen-futures 0.4.45 0.4.47
quote 1.0.37 1.0.38
syn 2.0.90 2.0.95
winit 0.30.5 0.30.8
os_info 3.9.0 3.9.2
tracing-tracy 0.11.3 0.11.4
ashpd 0.9.2 0.10.2
zip 2.2.1 2.2.2
crossbeam-channel 0.5.13 0.5.14
reqwest 0.12.9 0.12.12
tempfile 3.14.0 3.15.0
insta 1.41.1 1.42.0
profiling 1.0.15 1.0.16
bzip2 0.4.4 0.5.0
env_logger 0.11.5 0.11.6

Updates naga from 23.0.0 to 23.1.0

Release notes

Sourced from naga's releases.

v23.1.0 (2024-12-16)

This release only contains naga v23.1.0 all other packages are still at their previous versions.

New Features

Naga

  • Expose Ray Query flags as constants in WGSL. Implement candidate intersections. By @​kvark in #5429

23.0.1 (2024-11-25)

This release includes patches for wgpu, wgpu-core and wgpu-hal. All other crates remain at 23.0.0. Below changes were cherry-picked from 24.0.0 development line.

Bug fixes

General

Metal

Vulkan

  • Fix surface capabilities being advertised when its query failed. By @​wumpf in #6510
Changelog

Sourced from naga's changelog.

23.1.0 (2024-12-11)

New Features

Naga

  • Expose Ray Query flags as constants in WGSL. Implement candidate intersections. By @​kvark in #5429

23.0.1 (2024-11-25)

This release includes patches for wgpu, wgpu-core and wgpu-hal. All other crates remain at 23.0.0. Below changes were cherry-picked from 24.0.0 development line.

Bug fixes

General

Metal

Vulkan

  • Fix surface capabilities being advertised when its query failed. By @​wumpf in #6510
Commits
  • 9993f5c [v23] Rt constants backport (#6711)
  • cbe98e6 Updates to v23.0.1 changelog notes - fix date & links
  • 1755db7 bump wgpu, wgpu-core, wgpu-hal to 23.0.1
  • 1f49837 Fix Vulkan surface capabilities being advertised when its query failed. (#6510)
  • 5ea7288 Fix leaks of WeakVec (#6576)
  • f286882 Fix iOS crash: don't set autoresizing mask (#6535)
  • See full diff in compare view

Updates clap from 4.5.21 to 4.5.23

Release notes

Sourced from clap's releases.

v4.5.23

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

v4.5.22

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Changelog

Sourced from clap's changelog.

[4.5.23] - 2024-12-05

Fixes

  • (parser) When check allow_negative_numbers, allow E again

[4.5.22] - 2024-12-03

Fixes

  • (assert) Catch bugs with arguments requiring themself
Commits

Updates anyhow from 1.0.93 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

1.0.94

  • Documentation improvements
Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • 8ceb5e9 Release 1.0.94
  • b9009ab Merge pull request #399 from dtolnay/okvalue
  • 863791a Align naming between Ok function argument and its documentation
  • 2081692 Merge pull request #398 from zertosh/ok_doc_format
  • cc2cecb Fix anyhow::Ok rustdoc code formatting
  • Additional commits viewable in compare view

Updates bytemuck from 1.20.0 to 1.21.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.21

  • Implement Pod and Zeroable for core::arch::{x86, x86_64}::__m512, __m512d and __m512i without nightly. Requires Rust 1.72, and is gated through the avx512_simd cargo feature.
  • Allow the use of must_cast_mut and must_cast_slice_mut in const contexts. Requires Rust 1.83, and is gated through the must_cast_extra cargo feature.
  • internal: introduced the maybe_const_fn macro that allows defining some function to be const depending upon some cfg predicate.

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

... (truncated)

Commits
  • 621848f chore: Release bytemuck version 1.21.0
  • 75b54ef changelog
  • 45fbae7 chore: Release bytemuck_derive version 1.8.1
  • 9d06a93 changelog
  • d6c589f Cargo.toml: add transparentwrapper_extra to latest_stable_rust, and expand on...
  • 9801bb9 Update lib.rs (#290)
  • 4bdaf0a Implements Pod and Zeroable for AVX512 types that don't require nightly. ...
  • 227d7fe hide unexpected_cfgs warnings in proc-macro generated code (#287)
  • See full diff in compare view

Updates chrono from 0.4.38 to 0.4.39

Release notes

Sourced from chrono's releases.

0.4.39

What's Changed

Commits

Updates js-sys from 0.3.72 to 0.3.74

Commits

Updates web-sys from 0.3.72 to 0.3.74

Commits

Updates serde from 1.0.215 to 1.0.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)

v1.0.216

  • Mark all generated impls with #[automatically_derived] to exclude from code coverage (#2866, #2868, thanks @​tdittr)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • ad8dd41 Release 1.0.216
  • f91d2ed Merge pull request #2868 from dtolnay/automaticallyderived
  • Additional commits viewable in compare view

Updates url from 2.5.2 to 2.5.4

Release notes

Sourced from url's releases.

v2.5.4

What's Changed

  • Revert "Normalize URL paths: convert /.//p, /..//p, and //p to p (#943)" by @​valenting in servo/rust-url#999
  • Updates the MSRV to 1.63 required though the libc v0.2.164 dependency

Full Changelog: servo/rust-url@v2.5.3...v2.5.4

v2.5.3

What's Changed

New Contributors

Full Changelog: servo/rust-url@v2.5.2...v2.5.3

Commits

Updates tokio from 1.41.1 to 1.42.0

Release notes

Sourced from tokio's releases.

Tokio v1.42.0

1.42.0 (Dec 3rd, 2024)

Added

  • io: add AsyncFd::{try_io, try_io_mut} (#6967)

Fixed

  • io: avoid ptr->ref->ptr roundtrip in RegistrationSet (#6929)
  • runtime: do not defer yield_now inside block_in_place (#6999)

Changes

  • io: simplify io readiness logic (#6966)

Documented

  • net: fix docs for tokio::net::unix::{pid_t, gid_t, uid_t} (#6791)
  • time: fix a typo in Instant docs (#6982)

#6791: tokio-rs/tokio#6791 #6929: tokio-rs/tokio#6929 #6966: tokio-rs/tokio#6966 #6967: tokio-rs/tokio#6967 #6982: tokio-rs/tokio#6982 #6999: tokio-rs/tokio#6999

Commits

Updates rfd from 0.15.0 to 0.15.2

Release notes

Sourced from rfd's releases.

0.15.2

What's Changed

New Contributors

Full Changelog: PolyMeilex/rfd@0.15.1...0.15.2

0.15.1

What's Changed

Changelog

Sourced from rfd's changelog.

Change Log

Unreleased

0.15.1

  • Update ashpd to 0.10.
  • Fix issue where with no filter added no files are selectable on Windows (#211).
Commits

Updates quick-xml from 0.36.2 to 0.37.2

Release notes

Sourced from quick-xml's releases.

v0.37.2 - se::to_utf8_io_writer()

What's Changed

New Features

  • #836: Add se::to_utf8_io_writer() helper compatible with std::io::Write and restricted to UTF-8 encoding.

#836: tafia/quick-xml#836

New Contributors

Full Changelog: tafia/quick-xml@v0.37.1...v0.37.2

v0.37.1 - Write CDATA safely

What's Changed

New Features

  • #831: Add BytesCData::escaped() fn to construct CDATA events from arbitrary user input.

#831: tafia/quick-xml#831

New Contributors

Full Changelog: tafia/quick-xml@v0.37.0...v0.37.1

v0.37.0 - serde & errors imporvements

What's Changed

⚠️ Significant Changes

Those changes could require not trivial adoption of your code:

  • The recognized boolean values in serde Deserializer are reduced. Use #[serde(deserialize_with)] which will accept and parse strings if you need the old behavior.
  • Serializer no longer serialize consequent primitive values (those which would produce only text, without surrounding tags), because it is impossible to deserialize them back to the same value.
  • The crate's errors was changed, some variants was splitted to their own error types, some removed.

New Features

  • #826: Implement From<String> and From<Cow<str>> for quick_xml::de::Text.
  • #826: Make SimpleTypeDeserializer and SimpleTypeSerializer public.
  • #826: Implement IntoDeserializer for &mut Deserializer.

Bug Fixes

  • #655: Do not write indent before and after $text fields and those $value fields that are serialized as a text (for example, usize or String).
  • #826: Handle only those boolean representations that are allowed by [Xml Schema] which is only "true", "1", "false", and "0". Previously the following values also was accepted:

... (truncated)

Changelog

Sourced from quick-xml's changelog.

0.37.2 -- 2024-12-29

New Features

  • #836: Add se::to_utf8_io_writer() helper compatible with std::io::Write and restricted to UTF-8 encoding.

#836: tafia/quick-xml#836

0.37.1 -- 2024-11-17

New Features

  • #831: Add BytesCData::escaped() fn to construct CDATA events from arbitrary user input.

#831: tafia/quick-xml#831

0.37.0 -- 2024-10-27

New Features

  • #826: Implement From<String> and From<Cow<str>> for quick_xml::de::Text.
  • #826: Make SimpleTypeDeserializer and SimpleTypeSerializer public.
  • #826: Implement IntoDeserializer for &mut Deserializer.

Bug Fixes

  • #655: Do not write indent before and after $text fields and those $value fields that are serialized as a text (for example, usize or String).
  • #826: Handle only those boolean representations that are allowed by [Xml Schema] which is only "true", "1", "false", and "0". Previously the following values also was accepted:
    bool XML content
    true "True", "TRUE", "t", "Yes", "YES", "yes", "y"
    false "False", "FALSE", "f", "No", "NO", "no", "n"

Misc Changes

  • #227: Split SeError from DeError in the serialize feature. Serialize functions and methods now return SeError.
  • #810: Return std::io::Error from Writer methods.
  • #811: Split NamespaceError and EncodingError from Error.
  • #811: Renamed Error::EscapeError to Error::Escape to match other variants.
  • #811: Narrow down error return type from Error where only one variant is ever returned: attribute related methods on BytesStart and BytesDecl returns AttrError
  • #820: Classify output of the Serializer by returning an enumeration with kind of written data
  • #823: Do not allow serialization of consequent primitives, for example Vec<usize> or Vec<String> in $value fields. They cannot be deserialized back with the same result

... (truncated)

Commits
  • 52169ca Release 0.37.2
  • 9ad2010 Merge pull request #836 from pronebird/utf8writer
  • 3b5c74d Add to_utf8_io_writer accepting std::io::Write
  • 0793d6a Merge pull request #833 from Mingun/fix-serde-warnings
  • 65f57b2 Remove ignored tests which produces warnings since serde 1.0.215
  • 10177b1 Release 0.37.1
  • 6c4c766 Merge pull request #832 from Turbo87/cdata-escape
  • be09876 Add BytesCData::escaped() fn
  • a5ad85e Merge pull request #830 from allan2/fix-typo
  • 7b5c972 Fix typo
  • Additional commits viewable in compare view

Updates serde_json from 1.0.133 to 1.0.134

Release notes

Sourced from serde_json's releases.

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)
Commits
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • 9c9aa1f Add literal 'null', 'true' and 'false' consts to RawValue struct.
  • See full diff in compare view

Updates fluent-templates from 0.11.0 to 0.12.0

Release notes

Sourced from fluent-templates's releases.

fluent-templates-v0.12.0

Fixed

  • [breaking] Make Loader object-safe (#83)
Changelog

Sourced from fluent-templates's changelog.

0.12.0 - 2024-09-27

Fixed

  • [breaking] Make Loader object-safe (#83)
Commits

Updates png from 0.17.14 to 0.17.16

Changelog

Sourced from png's changelog.

0.17.15

Added

  • Add a public API to advance to the next frame in APNG decoder (#518)
  • Add APIs to write ICC and EXIF chunks (#526)
  • Add support for parsing the sBIT chunk (#524)
  • Add support for parsing the bKGD chunk (#538)
  • Add support for parsing the cICP chunk (#529)
  • Add support for parsing mDCv and cLLi chunks (#528, (#543))

Changed

  • Improve performance of Paeth filter during decoding (#512, #539)

Fixed

  • Avoid an infinite loop when retrying after a fatal error using StreamingDecoder (#520)
  • Fixed chunk order in encoded files (#526)

#495: image-rs/image-png#495 #496: image-rs/image-png#496 #512: image-rs/image-png#512 #518: image-rs/image-png#518 #520: image-rs/image-png#520 #524: image-rs/image-png#524 #526: image-rs/image-png#526 #528: image-rs/image-png#528 #529: image-rs/image-png#529 #538: image-rs/image-png#538 #539: image-rs/image-png#539 #543: image-rs/image-png#543

Commits
  • fbf2566 Merge pull request #550 from image-rs/lets-go
  • 060925e Deprecate Info::encode
  • 2d6ca8d Bump version
  • 4baeb70 Bump dev dep
  • ab45766 Allow cfg(fuzzing)
  • 4a1b982 Make gAMA and cHRM fallback optional for sRGB
  • 3ef4af6 Fix iCCP chunk encoding (#548)
  • 2232f83 Pass through nightly feature to crc32fast crate to get SIMD crc32 on Aarch64
  • 10644db Merge pull request #542 from Shnats...

    Description has been truncated

…dates

Bumps the cargo-minor group with 31 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [naga](https://github.com/gfx-rs/wgpu) | `23.0.0` | `23.1.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.21` | `4.5.23` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.20.0` | `1.21.0` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.38` | `0.4.39` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.72` | `0.3.74` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.72` | `0.3.74` |
| [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` |
| [url](https://github.com/servo/rust-url) | `2.5.2` | `2.5.4` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.41.1` | `1.42.0` |
| [rfd](https://github.com/PolyMeilex/rfd) | `0.15.0` | `0.15.2` |
| [quick-xml](https://github.com/tafia/quick-xml) | `0.36.2` | `0.37.2` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.133` | `1.0.134` |
| [fluent-templates](https://github.com/XAMPPRocky/fluent-templates) | `0.11.0` | `0.12.0` |
| [png](https://github.com/image-rs/image-png) | `0.17.14` | `0.17.16` |
| [tracy-client](https://github.com/nagisa/rust_tracy_client) | `0.17.4` | `0.18.0` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.45` | `0.4.47` |
| [quote](https://github.com/dtolnay/quote) | `1.0.37` | `1.0.38` |
| [syn](https://github.com/dtolnay/syn) | `2.0.90` | `2.0.95` |
| [winit](https://github.com/rust-windowing/winit) | `0.30.5` | `0.30.8` |
| [os_info](https://github.com/stanislav-tkach/os_info) | `3.9.0` | `3.9.2` |
| [tracing-tracy](https://github.com/nagisa/rust_tracy_client) | `0.11.3` | `0.11.4` |
| [ashpd](https://github.com/bilelmoussaoui/ashpd) | `0.9.2` | `0.10.2` |
| [zip](https://github.com/zip-rs/zip2) | `2.2.1` | `2.2.2` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.13` | `0.5.14` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.9` | `0.12.12` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.14.0` | `3.15.0` |
| [insta](https://github.com/mitsuhiko/insta) | `1.41.1` | `1.42.0` |
| [profiling](https://github.com/aclysma/profiling) | `1.0.15` | `1.0.16` |
| [bzip2](https://github.com/trifectatechfoundation/bzip2-rs) | `0.4.4` | `0.5.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.5` | `0.11.6` |



Updates `naga` from 23.0.0 to 23.1.0
- [Release notes](https://github.com/gfx-rs/wgpu/releases)
- [Changelog](https://github.com/gfx-rs/wgpu/blob/naga-v23.1.0/CHANGELOG.md)
- [Commits](gfx-rs/wgpu@naga-v23.0.0...naga-v23.1.0)

Updates `clap` from 4.5.21 to 4.5.23
- [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.21...clap_complete-v4.5.23)

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

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

Updates `chrono` from 0.4.38 to 0.4.39
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.38...v0.4.39)

Updates `js-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 `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 `serde` from 1.0.215 to 1.0.217
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.215...v1.0.217)

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 `tokio` from 1.41.1 to 1.42.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.41.1...tokio-1.42.0)

Updates `rfd` from 0.15.0 to 0.15.2
- [Release notes](https://github.com/PolyMeilex/rfd/releases)
- [Changelog](https://github.com/PolyMeilex/rfd/blob/master/CHANGELOG.md)
- [Commits](PolyMeilex/rfd@0.15.0...0.15.2)

Updates `quick-xml` from 0.36.2 to 0.37.2
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.36.2...v0.37.2)

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

Updates `fluent-templates` from 0.11.0 to 0.12.0
- [Release notes](https://github.com/XAMPPRocky/fluent-templates/releases)
- [Changelog](https://github.com/XAMPPRocky/fluent-templates/blob/master/CHANGELOG.md)
- [Commits](XAMPPRocky/fluent-templates@fluent-templates-v0.11.0...fluent-templates-v0.12.0)

Updates `png` from 0.17.14 to 0.17.16
- [Changelog](https://github.com/image-rs/image-png/blob/master/CHANGES.md)
- [Commits](image-rs/image-png@v0.17.14...v0.17.16)

Updates `tracy-client` from 0.17.4 to 0.18.0
- [Commits](nagisa/rust_tracy_client@tracy-client-v0.17.4...tracy-client-v0.18.0)

Updates `wasm-bindgen-futures` from 0.4.45 to 0.4.47
- [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 `quote` from 1.0.37 to 1.0.38
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.37...1.0.38)

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

Updates `winit` from 0.30.5 to 0.30.8
- [Release notes](https://github.com/rust-windowing/winit/releases)
- [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/winit@v0.30.5...v0.30.8)

Updates `os_info` from 3.9.0 to 3.9.2
- [Release notes](https://github.com/stanislav-tkach/os_info/releases)
- [Changelog](https://github.com/stanislav-tkach/os_info/blob/master/CHANGELOG.md)
- [Commits](stanislav-tkach/os_info@v3.9.0...v3.9.2)

Updates `tracing-tracy` from 0.11.3 to 0.11.4
- [Commits](nagisa/rust_tracy_client@tracing-tracy-v0.11.3...tracing-tracy-v0.11.4)

Updates `ashpd` from 0.9.2 to 0.10.2
- [Release notes](https://github.com/bilelmoussaoui/ashpd/releases)
- [Commits](bilelmoussaoui/ashpd@0.9.2...0.10.2)

Updates `zip` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v2.2.1...v2.2.2)

Updates `crossbeam-channel` from 0.5.13 to 0.5.14
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.13...crossbeam-channel-0.5.14)

Updates `reqwest` from 0.12.9 to 0.12.12
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.9...v0.12.12)

Updates `tempfile` from 3.14.0 to 3.15.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.14.0...v3.15.0)

Updates `insta` from 1.41.1 to 1.42.0
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.41.1...1.42.0)

Updates `profiling` from 1.0.15 to 1.0.16
- [Changelog](https://github.com/aclysma/profiling/blob/master/CHANGELOG.md)
- [Commits](aclysma/profiling@v1.0.15...v1.0.16)

Updates `bzip2` from 0.4.4 to 0.5.0
- [Release notes](https://github.com/trifectatechfoundation/bzip2-rs/releases)
- [Commits](trifectatechfoundation/bzip2-rs@0.4.4...v0.5.0)

Updates `env_logger` from 0.11.5 to 0.11.6
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.5...v0.11.6)

---
updated-dependencies:
- dependency-name: naga
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: js-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: web-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: rfd
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: quick-xml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: fluent-templates
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: png
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: tracy-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: wasm-bindgen-futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: winit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: os_info
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: tracing-tracy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: ashpd
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: zip
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: crossbeam-channel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: profiling
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: bzip2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Author

dependabot bot commented on behalf of github Jan 6, 2025

The following labels could not be found: T-chore, A-deps.

Copy link
Author

dependabot bot commented on behalf of github Jan 13, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 13, 2025
@dependabot dependabot bot deleted the dependabot/cargo/cargo-minor-c152bd848e branch January 13, 2025 20:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants