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

Bump the all group across 1 directory with 41 updates #5

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the all group with 33 updates in the /src-tauri directory:

Package From To
serde_json 1.0.116 1.0.117
serde 1.0.200 1.0.202
reqwest 0.11.27 0.12.4
tauri-build 1.5.1 1.5.2
anyhow 1.0.82 1.0.86
async-channel 2.2.1 2.3.0
bytemuck 1.15.0 1.16.0
cc 1.0.97 1.0.98
crossbeam-channel 0.5.12 0.5.13
crossbeam-utils 0.8.19 0.8.20
darling 0.20.8 0.20.9
errno 0.3.8 0.3.9
instant 0.1.12 0.1.13
libc 0.2.154 0.2.155
linux-raw-sys 0.4.13 0.4.14
miniz_oxide 0.7.2 0.7.3
petgraph 0.6.4 0.6.5
piper 0.2.1 0.2.2
proc-macro2 1.0.81 1.0.83
rustc-demangle 0.1.23 0.1.24
rustversion 1.0.15 1.0.17
ryu 1.0.17 1.0.18
semver 1.0.22 1.0.23
serde_spanned 0.6.5 0.6.6
tauri-codegen 1.4.2 1.4.3
tauri-macros 1.4.3 1.4.4
tauri-runtime 0.14.2 0.14.3
tauri-runtime-wry 0.14.5 0.14.7
thiserror 1.0.59 1.0.61
toml_datetime 0.6.5 0.6.6
wry 0.24.8 0.24.10
zbus 4.2.0 4.2.1
zvariant 4.0.3 4.1.0

Updates serde_json from 1.0.116 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits

Updates serde from 1.0.200 to 1.0.202

Release notes

Sourced from serde's releases.

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)
Commits
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • 48cc2a6 Replace use of a syn From impl
  • 3202a68 Skip rerunning build script on library code changes
  • b4f1bc1 Release 1.0.201
  • 029ab46 Merge pull request #2737 from dtolnay/checkcfg
  • 220ca0c Resolve unexpected_cfgs warning
  • 20306f4 Fix cfg on test_systemtime_overflow
  • See full diff in compare view

Updates reqwest from 0.11.27 to 0.12.4

Release notes

Sourced from reqwest's releases.

v0.12.4

What's Changed

  • Add zstd support, enabled with zstd Cargo feature (thanks @​paolobarbolini!)
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

New Contributors

v0.12.3

What's Changed

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.2...v0.12.3

v0.12.2

What's Changed

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.1...v0.12.2

v0.12.1

What's Changed

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.0...v0.12.1

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.12.4

  • Add zstd support, enabled with zstd Cargo feature.
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

v0.12.3

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

v0.12.2

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

v0.12.1

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

v0.12.0

  • Upgrade to hyper, http, and http-body v1.
  • Add better support for converting to and from http::Request and http::Response.
  • Add http2 optional cargo feature, default on.
  • Add charset optional cargo feature, default on.
  • Add macos-system-configuration cargo feature, default on.
  • Change all optional dependencies to no longer be exposed as implicit features.
  • Add ClientBuilder::interface(str) to specify the local interface to bind to.
  • Experimental: disables the http3 feature temporarily.
Commits
  • de5dbb1 v0.12.4
  • 0f126f5 tests: fix blocking test about empty bodies and content-length
  • 1073881 feat: add zstd support (#1866)
  • 1af8945 feat: add ClientBuilder::read_timeout(dur) (#2241)
  • e99da85 refactor: fix warnings related to mutability of self (#2245)
  • 0720159 v0.12.3
  • 9209695 Remove duplicate example for ClientBuilder::default_headers (#2236)
  • e3a1565 fix: use lower case domain string when using resolve and resolve_to_addrs...
  • b4c491a feat: allow fine-grained root certs for rustls (#2232)
  • cf4295d chore: update winreg to 0.52.0 (#2226)
  • Additional commits viewable in compare view

Updates tauri-build from 1.5.1 to 1.5.2

Release notes

Sourced from tauri-build's releases.

tauri-build v1.5.2

Updating crates.io index

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 623 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (585 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.3
        ├── tauri 1.6.3
        ├── restart 0.1.0
        └── app-updater 0.1.0

warning: 1 allowed warning found

[1.5.2]

Dependencies

Updating crates.io index
   Packaging tauri-build v1.5.2 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v1.5.2 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.2
  Downloaded tauri-winres v0.1.1
  Downloaded cargo_toml v0.15.3
   Compiling proc-macro2 v1.0.81
</tr></table> 

... (truncated)

Commits

Updates anyhow from 1.0.82 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view

Updates async-channel from 2.2.1 to 2.3.0

Release notes

Sourced from async-channel's releases.

v2.3.0

  • Add force_send for sending items over the channel that displace other items. (#89)
Changelog

Sourced from async-channel's changelog.

Version 2.3.0

  • Add force_send for sending items over the channel that displace other items. (#89)
Commits

Updates bytemuck from 1.15.0 to 1.16.0

Changelog

Sourced from bytemuck's changelog.

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.
Commits

Updates cc from 1.0.97 to 1.0.98

Release notes

Sourced from cc's releases.

1.0.98

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.97...1.0.98

Commits

Updates crossbeam-channel from 0.5.12 to 0.5.13

Release notes

Sourced from crossbeam-channel's releases.

crossbeam-channel 0.5.13

  • Add select_biased! macro. (#1040)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates crossbeam-utils from 0.8.19 to 0.8.20

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.20

  • Implement Display for CachePadded. (#1097)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates darling from 0.20.8 to 0.20.9

Changelog

Sourced from darling's changelog.

v0.20.9 (May 15, 2024)

  • Allow word-form for newtype enum variants whose only field produces a value when from_none is called on their type #249
  • Add FromMeta impls for the std::num::NonZero* types #288
  • Fix panic in number FromMeta impls when the parsed value is too large for the receiver type #289
Commits

Updates darling_core from 0.20.8 to 0.20.9

Changelog

Sourced from darling_core's changelog.

v0.20.9 (May 15, 2024)

  • Allow word-form for newtype enum variants whose only field produces a value when from_none is called on their type #249
  • Add FromMeta impls for the std::num::NonZero* types #288
  • Fix panic in number FromMeta impls when the parsed value is too large for the receiver type #289
Commits

Updates darling_macro from 0.20.8 to 0.20.9

Changelog

Sourced from darling_macro's changelog.

v0.20.9 (May 15, 2024)

  • Allow word-form for newtype enum variants whose only field produces a value when from_none is called on their type #249
  • Add FromMeta impls for the std::num::NonZero* types #288
  • Fix panic in number FromMeta impls when the parsed value is too large for the receiver type #289
Commits

Updates errno from 0.3.8 to 0.3.9

Changelog

Sourced from errno's changelog.

[0.3.9] - 2024-05-07

  • Add visionOS support #95
Commits

Updates instant from 0.1.12 to 0.1.13

Commits

Updates libc from 0.2.154 to 0.2.155

Release notes

Sourced from libc's releases.

0.2.155

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.154...0.2.155

Commits
  • 7df63bd Merge pull request #3682 from madsmtm/new-version
  • 0bbb5cd Merge pull request #3690 from tesuji/android-posix-spawn
  • 15c74a4 Update version to 0.2.155
  • 664947b Merge pull request #3708 from cuviper/ci-sparc64-0.2
  • 61331df Also skip MFD_EXEC and MFD_NOEXEC_SEAL on sparc64
  • 73d2004 Skip SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV on sparc64
  • 80535f3 Revert "Upgrade Docker images to Ubuntu 23.10" on sparc64
  • b2b2fd7 Readd posix_spawn{_file_actions_t,attr_t} on Android
  • 7646277 Merge pull request #3686 from redox-os/redox-epoll-0.2
  • 5eff703 redox: correct EPOLL constants
  • Additional commits viewable in compare view

Updates linux-raw-sys from 0.4.13 to 0.4.14

Commits

Updates miniz_oxide from 0.7.2 to 0.7.3

Changelog

Sourced from miniz_oxide's changelog.

0.7.3 - 2024-05-17

Bug Fixes

  • (miniz_oxide) Fix version specification for simd-adler32 (#150) - (35c71e1) - Daniel Müller
  • Fix clippy lints (#151) - (7c758d4) - Gnome!
  • (miniz_oxide) Remove lookup table from rustc-std builds (#152) - (434d9ab) - Gnome!

Commits
  • 2ebf8e2 bump version and update changelog
  • 963a9ba fix(miniz_oxide_c_api): set version of cc so ci tests don't fail due to newer...
  • 434d9ab Remove lookup table from rustc-std builds (#152)
  • 7c758d4 Fix clippy lints (#151)
  • 35c71e1 fix(miniz_oxide): Fix version specification for simd-adler32 (#150)
  • See full diff in compare view

Updates petgraph from 0.6.4 to 0.6.5

Changelog

Sourced from petgraph's changelog.

Version 0.6.5 (2024-05-06)

  • Add rayon support for GraphMap ([#573](https://github.com/petgraph/petgraph/issues/573), [#615](https://github.com/petgraph/petgraph/issues/615))
  • Add Topo::with_initials method ([#585](https://github.com/petgraph/petgraph/issues/585)_)
  • Add logo to the project ([#598](https://github.com/petgraph/petgraph/issues/598)_)
  • Add Ford-Fulkerson algorithm ([#640](https://github.com/petgraph/petgraph/issues/640)_)
  • Update itertools to 0.12.1 ([#628](https://github.com/petgraph/petgraph/issues/628)_)
  • Update GraphMap to allow custom hash functions ([#623](https://github.com/petgraph/petgraph/issues/623)_)
  • Fix documentation ([#630](https://github.com/petgraph/petgraph/issues/630)_)
  • Fix clippy warnings ([#627](https://github.com/petgraph/petgraph/issues/627)_)
  • (internal) Fix remove old copyclone macro ([#601](https://github.com/petgraph/petgraph/issues/601)_)
  • (internal) Move minimum spanning tree into own module ([#624](https://github.com/petgraph/petgraph/issues/624)_)

.. _[#573](https://github.com/petgraph/petgraph/issues/573): petgraph/petgraph#573 .. _[#615](https://github.com/petgraph/petgraph/issues/615): petgraph/petgraph#615 .. _[#585](https://github.com/petgraph/petgraph/issues/585): petgraph/petgraph#585 .. _[#598](https://github.com/petgraph/petgraph/issues/598): petgraph/petgraph#598 .. _[#640](https://github.com/petgraph/petgraph/issues/640): petgraph/petgraph#640 .. _[#628](https://github.com/petgraph/petgraph/issues/628): petgraph/petgraph#628 .. _[#623](https://github.com/petgraph/petgraph/issues/623): petgraph/petgraph#623 .. _[#630](https://github.com/petgraph/petgraph/issues/630): petgraph/petgraph#630 .. _[#627](https://github.com/petgraph/petgraph/issues/627): petgraph/petgraph#627 .. _[#601](https://github.com/petgraph/petgraph/issues/601): petgraph/petgraph#601 .. _[#624](https://github.com/petgraph/petgraph/issues/624): petgraph/petgraph#624

Commits

Updates piper from 0.2.1 to 0.2.2

Release notes

Sourced from piper's releases.

v0.2.2

  • Update portable-atomic-util to v0.2.0. (#12)
Changelog

Sourced from piper's changelog.

Version 0.2.2

  • Update portable-atomic-util to v0.2.0. (#12)
Commits
  • 1483232 v0.2.2
  • abc152e Update portable-atomic-util requirement from 0.1.2 to 0.2.0
  • a9692eb msrv: Bump to v1.37.0
  • 4f12289 deps: Update async-channel requirement from 1.8.0 to 2.0.0
  • 12c595c deps: Update futures-lite requirement from 1.12.0 to 2.0.0
  • 08ca9db m: Update async-io requirement from 1.13.0 to 2.0.0
  • c58d164 Fix CI config (#8)
  • See full diff in compare view

Updates proc-macro2 from 1.0.81 to 1.0.83

Release notes

Sourced from proc-macro2's releases.

1.0.83

  • Optimize the representation of Ident (#462)

1.0.82

  • Resolve unexpected_cfgs warning (#456)
Commits
  • 1b77aca Release 1.0.83
  • 728eddf Merge pull request #462 from dtolnay/identsize
  • c56c5e6 Drop irrelevant capacity field from Ident representation
  • 464c2eb Merge pull request #461 from dtolnay/sizetest
  • 6f894e7 Disable span size tests when layout is randomized
  • 7b357af Add additional size tests
  • abc7dff Merge pull request #460 from dtolnay/docsrs
  • f8d88f3 Rely on docs.rs to define --cfg=docsrs by default
  • 8dc63f3 Release 1.0.82
  • 790cb41 Merge pull request #457 from dtolnay/defaultfeatures
  • Additional commits viewable in compare view

Updates rustc-demangle from 0.1.23 to 0.1.24

Commits

Updates rustversion from 1.0.15 to 1.0.17

Release notes

Sourced from rustversion's releases.

1.0.17

  • Support Windows builds that have OUT_DIR prefixed with \\?\ (#51)

1.0.16

  • Resolve unexpected_cfgs warning (#48)
Commits

Updates ryu from 1.0.17 to 1.0.18

Release notes

Sourced from ryu's releases.

1.0.18

  • Resolve unexpected_cfgs warning (#55)
Commits
  • 12746aa Release 1.0.18
  • 86b1932 Merge pull request #55 from dtolnay/checkcfg
  • 6132d8b Resolve unexpected_cfgs warning
  • 7b7c262 Remove html_root_url reminder from Cargo.toml
  • a05753c Revert "Temporarily disable miri on doctests"
  • 8a06923 Explicitly install a Rust toolchain for cargo-outdated job
  • dbb973b Temporarily disable miri on doctests
  • See full diff in compare view

Updates semver from 1.0.22 to 1.0.23

Release notes

Sourced from semver's releases.

1.0.23

  • Resolve unexpected_cfgs warning (#318)
Commits
  • 69efd3c Release 1.0.23
  • 451b419 Merge pull request #318 from dtolnay/checkcfg
  • 5b71485 Resolve unexpected_cfgs warning
  • c520af7 Revert "Temporarily disable miri on doctests"
  • 73b5d9e Merge pull request #313 from Saecki/patch-1
  • e8d61de chore: fix typo in safety comment

Bumps the all group with 33 updates in the /src-tauri directory:

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.116` | `1.0.117` |
| [serde](https://github.com/serde-rs/serde) | `1.0.200` | `1.0.202` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.27` | `0.12.4` |
| [tauri-build](https://github.com/tauri-apps/tauri) | `1.5.1` | `1.5.2` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.82` | `1.0.86` |
| [async-channel](https://github.com/smol-rs/async-channel) | `2.2.1` | `2.3.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.15.0` | `1.16.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.97` | `1.0.98` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.12` | `0.5.13` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.19` | `0.8.20` |
| [darling](https://github.com/TedDriggs/darling) | `0.20.8` | `0.20.9` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.8` | `0.3.9` |
| [instant](https://github.com/sebcrozet/instant) | `0.1.12` | `0.1.13` |
| [libc](https://github.com/rust-lang/libc) | `0.2.154` | `0.2.155` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.13` | `0.4.14` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.2` | `0.7.3` |
| [petgraph](https://github.com/petgraph/petgraph) | `0.6.4` | `0.6.5` |
| [piper](https://github.com/notgull/piper) | `0.2.1` | `0.2.2` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.81` | `1.0.83` |
| [rustc-demangle](https://github.com/rust-lang/rustc-demangle) | `0.1.23` | `0.1.24` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.15` | `1.0.17` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.17` | `1.0.18` |
| [semver](https://github.com/dtolnay/semver) | `1.0.22` | `1.0.23` |
| [serde_spanned](https://github.com/toml-rs/toml) | `0.6.5` | `0.6.6` |
| [tauri-codegen](https://github.com/tauri-apps/tauri) | `1.4.2` | `1.4.3` |
| [tauri-macros](https://github.com/tauri-apps/tauri) | `1.4.3` | `1.4.4` |
| [tauri-runtime](https://github.com/tauri-apps/tauri) | `0.14.2` | `0.14.3` |
| [tauri-runtime-wry](https://github.com/tauri-apps/tauri) | `0.14.5` | `0.14.7` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.59` | `1.0.61` |
| [toml_datetime](https://github.com/toml-rs/toml) | `0.6.5` | `0.6.6` |
| [wry](https://github.com/tauri-apps/wry) | `0.24.8` | `0.24.10` |
| [zbus](https://github.com/dbus2/zbus) | `4.2.0` | `4.2.1` |
| [zvariant](https://github.com/dbus2/zbus) | `4.0.3` | `4.1.0` |



Updates `serde_json` from 1.0.116 to 1.0.117
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.116...v1.0.117)

Updates `serde` from 1.0.200 to 1.0.202
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.200...v1.0.202)

Updates `reqwest` from 0.11.27 to 0.12.4
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.27...v0.12.4)

Updates `tauri-build` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-build-v1.5.1...tauri-build-v1.5.2)

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

Updates `async-channel` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/smol-rs/async-channel/releases)
- [Changelog](https://github.com/smol-rs/async-channel/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-channel@v2.2.1...v2.3.0)

Updates `bytemuck` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.15.0...v1.16.0)

Updates `cc` from 1.0.97 to 1.0.98
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.97...1.0.98)

Updates `crossbeam-channel` from 0.5.12 to 0.5.13
- [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.12...crossbeam-channel-0.5.13)

Updates `crossbeam-utils` from 0.8.19 to 0.8.20
- [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-utils-0.8.19...crossbeam-utils-0.8.20)

Updates `darling` from 0.20.8 to 0.20.9
- [Release notes](https://github.com/TedDriggs/darling/releases)
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TedDriggs/darling/commits)

Updates `darling_core` from 0.20.8 to 0.20.9
- [Release notes](https://github.com/TedDriggs/darling/releases)
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TedDriggs/darling/commits)

Updates `darling_macro` from 0.20.8 to 0.20.9
- [Release notes](https://github.com/TedDriggs/darling/releases)
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md)
- [Commits](https://github.com/TedDriggs/darling/commits)

Updates `errno` from 0.3.8 to 0.3.9
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lambda-fairy/rust-errno/commits)

Updates `instant` from 0.1.12 to 0.1.13
- [Changelog](https://github.com/sebcrozet/instant/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sebcrozet/instant/commits)

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

Updates `linux-raw-sys` from 0.4.13 to 0.4.14
- [Commits](sunfishcode/linux-raw-sys@v0.4.13...v0.4.14)

Updates `miniz_oxide` from 0.7.2 to 0.7.3
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.7.2...0.7.3)

Updates `petgraph` from 0.6.4 to 0.6.5
- [Changelog](https://github.com/petgraph/petgraph/blob/master/RELEASES.rst)
- [Commits](https://github.com/petgraph/petgraph/compare/[email protected]@v0.6.5)

Updates `piper` from 0.2.1 to 0.2.2
- [Release notes](https://github.com/notgull/piper/releases)
- [Changelog](https://github.com/smol-rs/piper/blob/main/CHANGELOG.md)
- [Commits](smol-rs/piper@v0.2.1...v0.2.2)

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

Updates `rustc-demangle` from 0.1.23 to 0.1.24
- [Commits](rust-lang/rustc-demangle@0.1.23...0.1.24)

Updates `rustversion` from 1.0.15 to 1.0.17
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.15...1.0.17)

Updates `ryu` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.17...1.0.18)

Updates `semver` from 1.0.22 to 1.0.23
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.22...1.0.23)

Updates `serde_derive` from 1.0.200 to 1.0.202
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.200...v1.0.202)

Updates `serde_spanned` from 0.6.5 to 0.6.6
- [Commits](toml-rs/toml@serde_spanned-v0.6.5...serde_spanned-v0.6.6)

Updates `strsim` from 0.10.0 to 0.11.1
- [Release notes](https://github.com/rapidfuzz/strsim-rs/releases)
- [Changelog](https://github.com/rapidfuzz/strsim-rs/blob/main/CHANGELOG.md)
- [Commits](rapidfuzz/strsim-rs@0.10.0...v0.11.1)

Updates `tauri-codegen` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-codegen-v1.4.2...tauri-codegen-v1.4.3)

Updates `tauri-macros` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-macros-v1.4.3...tauri-macros-v1.4.4)

Updates `tauri-runtime` from 0.14.2 to 0.14.3
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-runtime-v0.14.2...tauri-runtime-v0.14.3)

Updates `tauri-runtime-wry` from 0.14.5 to 0.14.7
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-runtime-wry-v0.14.5...tauri-runtime-wry-v0.14.7)

Updates `tauri-utils` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](tauri-apps/tauri@tauri-utils-v1.5.3...tauri-utils-v1.5.4)

Updates `thiserror` from 1.0.59 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.59...1.0.61)

Updates `thiserror-impl` from 1.0.59 to 1.0.61
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.59...1.0.61)

Updates `toml_datetime` from 0.6.5 to 0.6.6
- [Commits](toml-rs/toml@toml_datetime-v0.6.5...toml_datetime-v0.6.6)

Updates `wry` from 0.24.8 to 0.24.10
- [Release notes](https://github.com/tauri-apps/wry/releases)
- [Changelog](https://github.com/tauri-apps/wry/blob/wry-v0.24.10/CHANGELOG.md)
- [Commits](tauri-apps/wry@wry-v0.24.8...wry-v0.24.10)

Updates `zbus` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/dbus2/zbus/releases)
- [Commits](dbus2/zbus@zbus-4.2.0...zbus-4.2.1)

Updates `zbus_macros` from 4.2.0 to 4.2.1
- [Release notes](https://github.com/dbus2/zbus/releases)
- [Commits](dbus2/zbus@zbus-4.2.0...zbus-4.2.1)

Updates `zvariant` from 4.0.3 to 4.1.0
- [Release notes](https://github.com/dbus2/zbus/releases)
- [Commits](dbus2/zbus@zvariant-4.0.3...zvariant-4.1.0)

Updates `zvariant_derive` from 4.0.3 to 4.1.0
- [Release notes](https://github.com/dbus2/zbus/releases)
- [Commits](dbus2/zbus@zvariant-4.0.3...zbus-4.1.0)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tauri-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: anyhow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: async-channel
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: bytemuck
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: crossbeam-channel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: crossbeam-utils
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: darling
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: darling_core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: darling_macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: instant
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: linux-raw-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: petgraph
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: piper
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rustc-demangle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: rustversion
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: semver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: serde_spanned
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: strsim
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tauri-codegen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-runtime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-runtime-wry
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tauri-utils
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: toml_datetime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wry
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: zbus
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: zbus_macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: zvariant
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: zvariant_derive
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels May 20, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github May 27, 2024

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

@dependabot dependabot bot closed this May 27, 2024
@dependabot dependabot bot deleted the dependabot/cargo/src-tauri/all-604deaa30e branch May 27, 2024 05:22
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.

0 participants