Skip to content

fix(deps): update rust dependencies#143

Open
github-actions[bot] wants to merge 1 commit into
masterfrom
renovate/rust-dependencies
Open

fix(deps): update rust dependencies#143
github-actions[bot] wants to merge 1 commit into
masterfrom
renovate/rust-dependencies

Conversation

@github-actions

@github-actions github-actions Bot commented Mar 16, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change
anyhow dependencies patch 1.0.1021.0.104
axum dependencies patch 0.8.80.8.9
axum-extra dependencies patch 0.12.50.12.6
bytes dependencies minor 1.11.11.12.1
clap dependencies patch 4.6.04.6.4
dashmap dependencies minor 6.1.06.2.1
futures-util (source) dependencies patch 0.3.320.3.33
getrandom dependencies patch 0.4.20.4.3
git2 dependencies minor 0.20.00.21.0
ignore (source) dependencies patch 0.4.250.4.31
indexmap dependencies minor 2.13.02.14.0
libc dependencies patch 0.2.1830.2.189
regex dependencies minor 1.12.31.13.1
reqwest dependencies patch 0.13.20.13.4
serde (source) dependencies patch 1.0.2281.0.229
serde_json dependencies patch 1.0.1491.0.151
sha2 dependencies minor 0.10.90.11.0
sqlx dependencies minor 0.8.20.9.0
tar dependencies patch 0.4.440.4.46
tauri (source) dependencies minor 2.10.32.11.5
tauri (source) dependencies minor 2.10.22.11.5
tauri-build (source) build-dependencies minor 2.5.62.6.3
tauri-build (source) build-dependencies minor 2.5.52.6.3
tauri-plugin-opener dependencies patch 2.5.32.5.4
tauri-plugin-single-instance dependencies patch 2.4.02.4.3
thiserror dependencies patch 2.0.182.0.19
time (source) dependencies patch 0.3.470.3.54
tokio (source) dependencies minor 1.50.01.53.1
tokio (source) dependencies minor 1.49.01.53.1
tokio-tungstenite dependencies minor 0.28.00.30.0
toml dependencies minor 1.0.6+spec-1.1.01.1.3
toml dependencies minor 1.0.3+spec-1.1.01.1.3
tower-http dependencies minor 0.6.80.7.0
uuid dependencies minor 1.22.01.24.0
zip dependencies minor 8.2.08.6.0
zip dependencies minor 8.1.08.6.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.104

Compare Source

  • Update syn dev-dependency to version 3

v1.0.103

Compare Source

  • Fix Stacked Borrows violation (UB) in Error::downcast_mut (#​451, #​452)
tokio-rs/axum (axum)

v0.8.9

Compare Source

  • added: WebSocketUpgrade::{requested_protocols, set_selected_protocol} for more flexible subprotocol selection (#​3597)
  • changed: Update minimum rust version to 1.80 (#​3620)
  • fixed: Set connect endpoint on correct field in MethodRouter (#​3656)
  • fixed: Return specific error message when multipart body limit is exceeded (#​3611)
tokio-rs/bytes (bytes)

v1.12.1

Compare Source

Fixed
  • Properly handle when Box::new panics (#​837)

v1.12.0

Compare Source

Added
  • Add BytesMut::extend_from_within() (#​818)
  • Add BytesMut::try_unsplit() (#​746)
Fixed
  • Fix panic in get_int if nbytes is zero (#​806)
Changed
  • Pass vtable data by value (#​826)
  • Exclude development scripts from published package (#​810)
Documented
  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#​808)
clap-rs/clap (clap)

v4.6.4

Compare Source

Internal
  • Update to syn v3

v4.6.3

Compare Source

Fixes
  • (derive) Allow "literal".function() as attribute values

v4.6.2

Compare Source

Fixes
  • (help) Say alias when there is only one

v4.6.1

Compare Source

Fixes
  • (derive) Ensure rebuilds happen when an read env variable is changed
xacrimon/dashmap (dashmap)

v6.2.1

Compare Source

This is an interim maintenance release for the existing v6 branch before v7 can be released. This bumps the MSRV to 1.85 and updates dependencies to their latest versions.

rust-lang/futures-rs (futures-util)

v0.3.33

Compare Source

  • Fix ReadLine's soundness issue regarding to exception safety. (#​3020)
  • Fix unsound Send impl for IterPinRef and Iter. (#​3003)
  • Fix stacked borrows violation in compat01as03 implementation. (#​3012)
  • Fix memory leak in FuturesUnordered::IntoIter. (#​3005)
  • Add portable-atomic-alloc feature and use it in FuturesUnordered. (#​3007)
  • Re-export alloc::task::Wake. (#​3010)
  • Update spin to 0.12. (#​3014)
rust-random/getrandom (getrandom)

v0.4.3

Compare Source

Added
  • wasm64-unknown-unknown target support for wasm_js backend #​848
Changed
  • Drop wasip2 and wasip3 dependencies in favor of manual bindings #​830
rust-lang/git2-rs (git2)

v0.21.0

Compare Source

0.20.4...main

Added
  • Added experimental SHA256 repository support behind the new unstable-sha256 Cargo feature,
    along with *_ext API variants that accept an ObjectFormat.
    #​1206
  • Added opts::set_cache_max_size() and opts::get_cached_memory().
    #​1188
  • Added Repository::object_format() and a new ObjectFormat enum.
    #​1204
  • Added Repository::set_config().
    #​1208
  • Added merge_file() along with MergeFileInput.
    #​1210
  • Added Repository::refdb_compress() for packing loose refs.
    #​1221
  • Added public Refdb type, along with Repository::refdb() and Repository::set_refdb(). Repository::refdb_compress() now delegates to Refdb::compress().
    #​1228
  • Added Revspec::into_objects().
    #​1230
  • Added BlameHunk::final_committer(), BlameHunk::orig_committer(), BlameHunk::summary(), and BlameHunk::summary_bytes().
    #​1231
  • Implemented Clone for Reference.
    #​1233
  • Added Repository::author_from_env() and Repository::committer_from_env().
    #​1237
  • Added impl From<Utf8Error> for Error.
    #​1239
Changed
  • ❗ The ssh, https, and cred Cargo features are no longer enabled by default.
    Previously default = ["ssh", "https"]; now default = [].
    Enable them explicitly if you rely on credential helpers or transport support.
    #​1168
  • CredentialHelper and the url dependency are now gated behind the new cred Cargo feature.
    Enabling ssh or https transitively enables cred.
    #​1168
  • ❗ Updated to the 2021 edition.
    #​1173
  • ❗ Many string accessors that previously returned Option<&str>
    now return Result<&str, Error> or Result<Option<&str>, Error>,
    so callers can distinguish a missing value from a non-UTF-8 one.
    #​1241
  • BlameHunk::final_signature, BlameHunk::final_committer, BlameHunk::orig_signature, and BlameHunk::orig_committer
    now return Option to avoid segfaults when signature information is missing.
    #​1254
  • Bumped requirement to libgit2-sys 0.18.4, which updates libgit2 to 1.9.3.
    #​1242
Fixed
  • Fixed MergeOptions::skip_reuc() to use the correct GIT_MERGE_SKIP_REUC flag.
    #​1194
  • Repository::submodules() now returns an Error when the underlying git_submodule_lookup() call to libgit2 fails, rather than panicking with a failed assertion.
    #​1220
  • Reference::is_valid_name() now propagates errors from CString conversion instead of panicking.
    #​1229
  • Fixed Remote::list() to return an empty list instead of erroring
    when the remote advertises no refs.
    #​1250
  • ReferenceNames now returns an Err for non-UTF-8 branch names instead of panicking.
    #​1239
Documentation
  • Added note regarding potentially confusing behavior of git_checkout_head.
    #​1149
  • Added comments describing the IndexAddOption flags.
    #​1163
  • Updated README note about the ssh feature.
    #​1187
  • Improved function docs for Repository::tag_foreach().
    #​1190
  • Fixed doc comment typo in StatusOptions.
    #​1199
  • Fixed missing period in module documentation.
    #​1219
  • Small wording fix in Signature::from_raw_const() docs.
    #​1222
  • Replaced discussion of missing gist in README.
    #​1223
  • Documented the bitflag methods for checking flags.
    #​1224
  • Clarified CheckoutBuilder::update_index() documentation.
    #​1232
  • Added more missing documentation.
    #​1235
  • Fixed typo in Repository::stash_save_ext() docs.
    #​1245
  • Added example showing retrieval of the latest commit for a file.
    #​1243
  • Replaced comma with period in CheckoutBuilder::refresh() docs.
    #​1252
Internals
  • Dropped civet/conduit from dev-dependencies.
    #​1170
  • Updated dependencies.
    #​1171
  • Fixed lockfile verification in CI.
    #​1177
  • Updated CI and documentation to cover feature combinations.
    #​1182
  • Listed all examples that may need HTTP and SSH.
    #​1196
  • Allowed publishing from any ref in the publish workflow.
    #​1198
  • Bumped time from 0.3.41 to 0.3.47.
    #​1215
  • Added end-to-end test for branch name on initialization.
    #​1244
  • Added end-to-end test for stash count.
    #​1246
  • Added end-to-end tests demonstrating use of Repository::statuses().
    #​1251
  • Internal refactors preparing for experimental SHA256 OID support.
    #​1201
    #​1205
BurntSushi/ripgrep (ignore)

v0.4.31

Compare Source

v0.4.30

Compare Source

v0.4.29

Compare Source

v0.4.28

Compare Source

v0.4.27

Compare Source

v0.4.26

Compare Source

indexmap-rs/indexmap (indexmap)

v2.14.0

Compare Source

  • MSRV: Rust 1.85.0 or later is now required.
  • Updated the hashbrown dependency to 0.17.
  • Made more map::Slice methods const: new_mut, first_mut, last_mut,
    split_at_mut, split_at_mut_checked, split_first_mut, split_last_mut

v2.13.1

Compare Source

  • Made some Slice methods const:
    • map::Slice::{first,last,split_at,split_at_checked,split_first,split_last}
    • set::Slice::{first,last,split_at,split_at_checked,split_first,split_last}
rust-lang/libc (libc)

v0.2.189

Compare Source

Added
  • Emscripten: Add pthread_sigmask, sigwait, sigwaitinfo, sigtimedwait, faccessat, and pthread_kill (#​5270)
  • Linux SPARC: Enable the clone3 syscall (#​4980)
  • Solarish: Add CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID (#​5274)
Deprecated
  • Deprecate CLONE_INTO_CGROUP and CLONE_CLEAR_SIGHAND. These overflow their types and will be changed to a larger size in the future. (8c6e6710458d)
Fixed
  • Musl riscv32: Rename padding fields to avoid a conflict and fix the build (2499ff0ad993)
  • NuttX: Fix wchar_t definition under Arm (#​5245)
  • Windows: Add back link names for time-related symbols (#​5300)

v0.2.188

Compare Source

Changed

These were removed in 0.2.187 because libc does not actually make Send and Sync
guarantees about DIR (or other extern types), but this caused some crates to break.
The traits are added back for now to allow time to migrate, but will be removed again
in the future; please make sure your crates are not relying on libc::DIR: Send or
libc::DIR: Sync.

v0.2.187

Compare Source

This release contains a number of improvements related to 64-bit time_t configuration.
Of note the existing RUST_LIBC_UNSTABLE_* environment variables have been replaced
with configuration options. The new way to use these is:

RUSTFLAGS='--cfg=libc_unstable_musl_v1_2_3' cargo ...
RUSTFLAGS='--cfg=libc_unstable_gnu_time_bits="64"' cargo ...

Being able to set this via RUSTFLAGS makes it easier to only apply configuration to
specific targets (and notably, not the host if build scripts are used).

There are two other notable changes:

  • The 32-bit windows-gnu targets now respect libc_unstable_gnu_time_bits

  • uClibc now supports a similar configuration option:

    RUSTFLAGS='--cfg=libc_unstable_uclibc_time64'

As a reminder, these options are under active development and may change in the future
(hence the "unstable" in the name). It likely that we will harmonize everything under a
single configuration option before considering them stable.

Support
  • Add support for aarch64-unknown-linux-pauthtest (#​5065)
  • Add support for new QNX targets (#​5241)
  • Better document breaking change policy and recommended usage (#​5179)
Added
  • Android: Add POSIX_SPAWN_* constants (#​5104)
  • Android: Add getpwent, setpwent, and endpwent (#​5160)
  • Android: Add preadv2 and pwritev2 (#​5157)
  • Android: Add seccomp_notif* structures (#​5224)
  • Android: Add timer_[create, delete, getoverrun, gettime, settime] (#​5108)
  • Apple: Add PROC_PIDT_SHORTBSDINFO and proc_bsdshortinfo (#​5110)
  • Apple: Add SIOC* constants from sockio.h (#​5263)
  • Apple: Add _IOR, _IOW, _IOWR (#​5264)
  • Apple: Add bpf_program and bpf_insn (#​5235)
  • Apple: Add additional kqueue constants (#​5077)
  • Apple: Update vm_statistics64 with recently added fields (#​5253)
  • Apple: add IN6_IFF_* and SIOCGIFAFLAG_IN6 (#​5239)
  • Dragonfly: Add O_*, POSIX_FADV_*, NI*, and a few other missing constants (#​5116)
  • Dragonfly: add fdatasync, dlvsym, reallocarray, qsort_r, pthread_*affinity_np, ftok, extattr_*, and dup3 (#​5116)
  • Emscripten: Add in6_pktinfo (#​5256)
  • FreeBSD: Add SOL_LOCAL (#​5185)
  • FreeBSD: Add DLT_* constants (#​5235)
  • FreeBSD: Add PROC_LOGSIGEXIT_* and PPROT_* (#​4657)
  • FreeBSD: Add SO_RERROR (#​5260)
  • FreeBSD: add IN6_IFF_*, in6_ifreq, and SIOCGIFAFLAG_IN6 (#​5239)
  • FreeBSD: add _IO* helpers from sys/ioccom.h (#​5239)
  • Glibc: Add PTHREAD_*_MUTEX_INITIALIZER_NP for riscv64 (#​5094)
  • Glibc: Add new fields to struct tcp_info (#​5215)
  • Linux: Add OPEN_TREE_NAMESPACE (#​5145)
  • Linux: Add SECCOMP_IOCTL_* constants (#​5224)
  • Linux: Add SO_DETACH_REUSEPORT_BPF (#​5081)
  • Linux: Add futex_waitv (#​5125)
  • Linux: Add constants for fsopen, fsconfig, fsmount, and fspick (#​5145)
  • Linux: Add fields to statx present since 6.16 (#​4621)
  • Linux: Add network entry API (#​5049)
  • Linux: add ifaddrmsg and rtattr (#​5234)
  • Linux: add sockaddr_iucv (#​5041)
  • MacOS: Add ENOTCAPABLE (#​4925)
  • Musl: Add renameat2 (#​5113)
  • NuttX: Add F_SETFD (#​5258)
  • NuttX: Add POLLRD* and POLLWR* constants (#​5258)
  • NuttX: Add SO_KEEPALIVE and TCP keepalive constants (#​5111)
  • NuttX: Add TCP_MAXSEG (#​5258)
  • NuttX: Add eventfd and EFD_* constants (#​5258)
  • NuttX: Add pipe2 (#​5258)
  • NuttX: Add strerror_r (#​5258)
  • NuttX: Add netinet structs and constants (#​5258)
  • NuttX: Add socket structs, functions and constants (#​5258)
  • QuRT: Add POSIX timer functions (#​5091)
  • QuRT: Add missing pthread functions from QuRT SDK headers (#​5091)
  • QuRT: Add missing unistd process and file functions (#​5091)
  • QuRT: Add mqueue subsystem (message queues, select/pselect) (#​5091)
  • Redox: Add *at and dirent functions (#​5117)
  • Solarish: Add IP TTL and IPv6 Hop Limit consts (#​5089)
  • Solarish: Add port_alert and PORT_ALERT* constants (#​5203)
  • Solarish: add AI_CANONNAME (#​5085)
  • aarch64: Add SYS_sendfile and SYS_fadvise64 constants (#​5133)
Deprecated
  • Dragonfly: Deprecate compatibility aliases CPUCTL_RSMSR and UTX_DB_LASTLOG (#​5116)
Fixed
  • breaking NetBSD: Correct ts from *const timespec to *mut timespec in _lwp_park` (#​5169)
  • breaking Linux GNU: Change overflowing PTRACE_*ET_SYSCALL_USER_DISPATCH_CONFIG constants from u8 to c_uint (#​4936)
  • Fix the soundness bug in the representation of extern types (#​5021)
  • Cygwin: fix cpuset_t typo in CPU_ZERO (#​5098)
  • Dragonfly: ABI fixes including regex offsets, ifaddrs, pthread barriers, process sizing fields, and mcontext alignment (#​5116)
  • Dragonfly: Correct values of CPUCTL_CPUID*, EV_HUP, and EV_SYSFLAGS (#​5116)
  • Emscripten: fix pthread type sizes for wasm64 (MEMORY64) (#​5156)
  • Horizon: Fix the value of POLLOUT (#​5090)
  • Linux: Correct the value of EPIOC[GS]PARAMS with nonstandard _IOC (#​5188)
  • Make VxWorks shims unsafe (#​3727)
  • NetBSD: Correct getmntinfo to link __getmntinfo13 (#​5251)
  • QNX: Fix the value of PTHREAD_MUTEX_INITIALIZER (#​5241)
  • QuRT: fix type and definition inaccuracies against SDK headers (#​5091)
  • Windows: Correctly link to 32-bit time routines on 32-bit platforms (#​5059)
  • uClibc: Fix constants accidentally removed (#​5141)
  • uclibc: Fix build issues (#​5046)
  • uclibc: Fix type of PRIO_PROCESS and friends (#​5046)
Changed
  • AIX, TeeOS: Drop unneeded -> c_void (#​5240)
  • Apple: Change AIO_LISTIO_MAX to account for changes in macOS 27 (#​5253)
  • Glibc: Update the value of MS_NOUSER (#​5215)
  • L4Re: Update definitions and test infra (#​5275)
  • Linux: Update the value of SW_MAX and SW_CNT (#​5215)
  • MacOS: Add swapped_count to vm_statistics64 (#​4926)
  • Windows: Windows-GNU now respects libc_unstable_gnu_time_bits for 64-bit time_t config (#​5062)
Removed
  • Dragonfly: Remove FreeBSD-only Elf32_Lword, ip_mreq_source, and IP_ constants (#​5116)
  • Dragonfly: Remove private VM type bindings (#​5116)
  • Linux: Remove KERN_REALROOTDEV and VM_LAPTOP_MODE (#​5177)
  • VxWorks: Remove non-user-facing (kernel) API (#​5129)
Other
  • Print config information if LIBC_BUILD_VERBOSE is set (#​5272)
  • Annotate *LAST constants as potentially changing (#​5120)
  • Annotate *MAX constants as potentially changing (#​5122)
  • BSD: Annotate ELAST constants as potentially changing (#​5118)
  • FreeBSD: Annotate RAND_MAX as potentially changing (#​5119)
  • Linux, L4re: Annotate *NUM constants as potentially changing (#​5123)
  • QNX: Restructure to support new platforms (#​4984)
  • Unix: Annotate *COUNT constants as potentially changing (#​5121)
  • uClibc: Add unstable support of 64-bit time_t (#​5046)
  • (internal) FreeBSD: Replace unstable env to set version with an unstable cfg (#​5201)
  • (internal) Glibc: Remove public configuration for file offset bits (#​5268)
  • (internal) Linux: Delete config via RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64 (#​5197)
  • (internal) Replace RUST_LIBC_UNSTABLE env with libc_unstable* cfg (#​4977)

v0.2.186

Compare Source

Added
  • Apple: Add KEVENT_FLAG_* constants (#​5070)
  • Linux: Add PR_SET_MEMORY_MERGE and PR_GET_MEMORY_MERGE (#​5060)
Changed
  • CI: Migrate FreeBSD CI from Cirrus CI to GitHub Actions (#​5058)

v0.2.185

Compare Source

Added
  • EspIDF: Add espidf_picolibc cfg for picolibc O_* flag values (#​5035)
  • Hexagon: add missing constants and fix types for linux-musl (#​5042)
  • Redox: Add semaphore functions (#​5051)
  • Windows: Add sprintf, snprintf, and the scanf family (#​5024)
Fixed
  • Hexagon: Decouple time64 types from musl symbol redirects (#​5040)
  • Horizon: Change POLL constants from c_short to c_int (#​5045)

v0.2.184

Compare Source

MSRV

This release increases the MSRV of libc to 1.65. With this update, you can now always use the
core::ffi::c_* types with libc definitions, since libc has been changed to reexport from
core rather than redefining them. (This usually worked before but had edge cases.)
(#​4972)

Added
  • BSD: Add IP_MINTTL to bsd (#​5026)
  • Cygwin: Add TIOCM_DSR (#​5031)
  • FreeBSD: Added xfile structe and file descriptor types (#​5002)
  • Linux: Add CAN netlink bindings (#​5011)
  • Linux: Add struct ethhdr (#​4239)
  • Linux: Add struct ifinfomsg (#​5012)
  • Linux: Define max_align_t for riscv64 (#​5029)
  • NetBSD: Add missing CLOCK_ constants (#​5020)
  • NuttX: Add _SC_HOST_NAME_MAX (#​5004)
  • VxWorks: Add flock and F_*LCK constants (#​4043)
  • WASI: Add all _SC_* sysconf constants (#​5023)
Deprecated

The remaining fixed-width integer aliases, __uint128_t, __uint128, __int128_t, and __int128,
have been deprecated. Use i128 and u128 instead. (#​4343)

Fixed
  • breaking Redox: Fix signal action constant types (#​5009)
  • EspIDF: Correct the value of DT_* constants (#​5034)
  • Redox: Fix locale values and add RTLD_NOLOAD, some TCP constants (#​5025)
  • Various: Use Padding::new(<zeroed>) rather than Padding::uninit() (#​5036)
Changed
  • potentially breaking Linux: Add new fields to struct ptrace_syscall_info (#​4966)
  • Re-export core::ffi integer types rather than redefining (#​5015)
  • Redox: Update F_DUPFD, IP, and TCP constants to match relibc (#​4990)
rust-lang/regex (regex)

v1.13.1

Compare Source

===================
This is a release that fixes a bug where incorrect regex match offsets could be
reported. Note that this doesn't impact whether a match occurs or not, just
where it occurs. The match offsets are still valid for slicing, they just may
not refer to the correct leftmost-first match. See
#​1364 for (many) more details.

Bug fixes:

  • #​1354:
    Fixes previously unsound reverse suffix and inner optimizations.

v1.13.0

Compare Source

===================
This release includes a new API, a regex! macro, for lazy compilation of
a regex from a string literal. If you use regexes a lot, it's likely you've
already written one exactly like it. The new macro can be used like this:

use regex::regex;

fn is_match(line: &str) -> bool {
    // The regex will be compiled approximately once and reused automatically.
    // This avoids the footgun of using `Regex::new` here, which would
    // guarantee that it would be compiled every time this routine is called.
    // This would likely make this routine much slower than it needs to be.
    regex!(r"bar|baz").is_match(line)
}

let hay = "\
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";

let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #​709:
    Add a new regex! macro for efficient and automatic reuse of a compiled regex.

v1.12.4

Compare Source

===================
This release includes a performance optimization for compilation of regexes
with very large character classes.

Improvements:

  • #​1308:
    Avoid re-canonicalizing the entire interval set when pushing new class ranges.
seanmonstar/reqwest (reqwest)

v0.13.4

Compare Source

  • Add ClientBuilder::tls_sslkeylogfile(bool) option to allow using the related environment variable.
  • Add ClientBuilder::http2_keep_alive_* options for the blocking client.
  • Add TLS 1.3 support when using native-tls backend.
  • Fix redirect handling to strip sensitive headers when the scheme changes.
  • Fix HTTP/3 happy-eyeball connection creation.
  • Upgrade hickory-resolver to 0.26.

v0.13.3

Compare Source

  • Fix CertificateRevocationList parsing of PEM values.
  • Fix logging in resolver to only show host, not full URL.
  • Fix hickory-dns to fallback to a default if /etc/resolv.conf fails.
  • Fix HTTP/3 to handle STOP_SENDING as not an error.
  • Fix HTTP/3 pool to remove timed out QUIC connections.
  • Fix HTTP/3 connection establishment picking IPv4 and IPv6.
  • Upgrade rustls-platform-verifier.
  • (wasm) Only use wasm-bindgen on unknown-* targets.
serde-rs/serde (serde)

v1.0.229

Compare Source

  • Update to syn 3
serde-rs/json (serde_json)

v1.0.151

Compare Source

v1.0.150

Compare Source

RustCrypto/hashes (sha2)

v0.11.0

Compare Source

launchbadge/sqlx (sqlx)

v0.9.0

Compare Source

Important Announcements
New Github Organization

Shortly after this release is published, the SQLx repository will be transferred to a new GitHub organization:
https://github.com/transact-rs/

This is because SQLx has not been owned or maintained by LaunchBadge, LLC. for a few years now, and has since been
informally transferred to the collective ownership of its principal authors. Moving the repository to a new
organization makes this change more clear, and also allows for potentially inviting outside collaborators.

Cargo.lock Removed from Tracking

The Cargo.lock has been removed from tracking in Git. CI should now always test with the latest versions of
all dependencies by default, alongside our pass that checks with cargo generate-lockfile -Z minimal-versions.

This should eliminate the need for any PRs that update dependencies to also update Cargo.lock or
contend with an endless stream of merge conflicts against it.

N.B. cargo install --locked sqlx-cli will no longer work. However, cargo install sqlx-cli has always
used the latest dependencies by default, ignoring the lockfile, so most users should not be affected. For users
requiring reproducible builds, consider maintaining your own lockfile instead; historically, we only ran cargo update
sporadically, so relying on SQLx's lockfile offered few guarantees anyway.

See [the manual page for cargo install][man-cargo-install] for details.

Breaking

As per our MSRV policy, the supported Rust version for this release cycle is 1.94.0.

  • [[#​3383]]: feat: create sqlx.toml format [[@​abonander]]
    • SQLx and sqlx-cli now support per-crate configuration files (sqlx.toml)
    • New functionality includes, but is not limited to:
      • Rename DATABASE_URL for a crate (for multi-database workspaces)
      • Set global type overrides for the macros (supporting custom types)
      • Rename or relocate the _sqlx_migrations table (for multiple crates using the same database)
      • Set characters to ignore when hashing migrations (e.g. ignore whitespace)
    • More to be implemented in future releases.
    • Enable feature sqlx-toml to use.
      • sqlx-cli has it enabled by default, but sqlx does not.
      • Default features of library crates can be hard to completely turn off because of [feature unification],
        so it's better to keep the default feature set as limited as possible.
        [This is something we learned the hard way.][preferred-crates]
    • Guide: see sqlx::_config module in documentation.
    • Reference: [Link]
    • Examples (written for Postgres but can be adapted to other databases; PRs welcome!):
      • Multiple databases using DATABASE_URL renaming and global type overrides: [Link]
      • Multi-tenant database using _sqlx_migrations renaming and multiple schemas: [Link]
      • Force use of chrono when time is enabled (e.g. when using tower-sessions-sqlx-store): [[Link][preferred-crates]]
        • Forcing bigdecimal when rust_decimal is enabled is also shown, but problems with chrono/time are more common.
    • Breaking changes:
      • Significant changes to the Migrate trait
      • sqlx::migrate::resolve_blocking() is now #[doc(hidden)] and thus SemVer-exempt.
  • [[#​3486]]: fix(logs): Correct spelling of aquired_after_secs tracing field [[@​iamjpotts]]
    • Breaking behavior change: implementations parsing tracing logs from SQLx will need to update the spelling.
  • [[#​3495]]: feat(postgres): remove lifetime from PgAdvisoryLockGuard [[@​bonsairobo]]
  • [[#​3526]]: Return &mut Self from the migrator set_ methods [[@​nipunn1313]]
    • Minor breaking change: Migrator::set_ignore_missing and set_locking now return &mut Self instead of &Self
      which may break code in rare circumstances.
  • [[#​3541]]: Postgres: force generic plan for better nullability inference. [[@​joeydewaal]]
    • Breaking change: may alter the output of the query!() macros for certain queries in Postgres.
  • [[#​3613]]: fix: RawSql lifetime issues [[@​abonander]]
    • Breaking change: adds DB type parameter to all methods of RawSql
  • [[#​3670]]: Bump ipnetwork to v0.21.1 [[@​BeauGieskens]]
  • [[#​3674]]: Implement Decode, Encode and Type for Box, Arc, Cow and Rc [[@​joeydewaal]]
    • Breaking change: impl Decode for Cow now always decodes Cow::Owned, lifetime is unlinked
    • See this discussion for motivation: #​3674 (comment)
  • [[#​3723]]: Add SqlStr [[@​joeydewaal]]
    • Breaking change: all query*() functions now take impl SqlSafeStr
      which is only implemented for &'static str and AssertSqlSafe.
      For all others, wrap in AssertSqlSafe(<query>).
    • This, along with [[#​3960]], finally allows returning owned queries as the type will be Query<'static, DB>.
    • SqlSafeStr trait is deliberately similar to std::panic::UnwindSafe,
      serving as a speedbump to warn users about naïvely building queries with format!()
      while allowing a workaround for advanced usage that is easy to spot on code review.
  • [[#​3800]]: Escape PostgreSQL Options [[@​V02460]]
    • Breaking behavior change: options passed to PgConnectOptions::options() are now automatically escaped.
      Manual escaping of options is no longer necessary and may cause incorrect behavior.
  • [[#​3821]]: Groundwork for 0.9.0-alpha.1 [[@​abonander]]
    • Increased MSRV to 1.86 and set rust-version
    • Deleted deprecated combination runtime+TLS features (e.g. runtime-tokio-native-tls)
    • Deleted re-export of unstable TransactionManager trait in sqlx.
      • Not technically a breaking change because it's #[doc(hidden)],
        but [it will break SeaORM][seaorm-2600] if not proactively fixed.
  • [[#​3924]]: breaking(mysql): assume all non-binary collations compatible with str [[@​abonander]]
    • Text (or text-like) columns which previously were inferred to be Vec<u8> will be inferred to be String
      (this should ultimately fix more code than it breaks).
    • SET NAMES utf8mb4 COLLATE utf8_general_ci is no longer sent by default; instead, SET NAMES utf8mb4 is sent to
      allow the server to select the appropriate default collation (since this is version- and configuration-dependent).
    • MySqlConnectOptions::charset() and ::collation() now imply ::set_names(true) because they don't do anything otherwise.
    • Setting charset doesn't change what's sent in the Protocol::HandshakeResponse41 packet as that normally only
      matters for error messages before SET NAMES is sent.
      The default collation if set_names = false is utf8mb4_general_ci.
    • See this comment for details.
    • Incidental breaking change: RawSql::fetch_optional() now returns sqlx::Result<Option<DB::Row>>
      instead of sqlx::Result<DB::Row>. Whoops.
  • [[#​3928]]: breaking(sqlite): libsqlite3-sys versioning, feature flags, safety changes [[@​abonander]]
    • SemVer policy changes: libsqlite3-sys version is now specified using a range.
      The maximum of the range may now be increased in any backwards-compatible release.
      The minimum of the range may only be increased in major releases.
      If you have libsqlite3-sys in your dependencies, Cargo should choose a compatible version automatically.
      If otherwise unconstrained, Cargo should choose the latest version supported.
    • SQLite extension loading (including through the new sqlx-toml feature) is now unsafe.
    • Added new non-default features corresponding to conditionally compiled SQLite APIs:
      • sqlite-deserialize enabling SqliteConnection::serialize() and SqliteConnection::deserialize()
      • sqlite-load-extension enabling SqliteConnectOptions::extension() and ::extension_with_entrypoint()
      • sqlite-unlock-notify enables internal use of sqlite3_unlock_notify()
    • SqliteValue and SqliteValueRef changes:
      • The sqlite3_value* interface reserves the right to be stateful.
        Without protection, any call could theoretically invalidate values previously returned, leading to dangling pointers.
      • SqliteValue is now !Sync and SqliteValueRef is !Send to prevent data races from concurrent accesses.
        • Instead, clone or wrap the SqliteValue in Mutex, or convert the SqliteValueRef to an owned value.
      • SqliteValue and any derived SqliteValueRefs now internally track if that value has been used to decode a
        borrowed &[u8] or &str and errors if it's used to decode any other type.
      • This is not expected to affect the vast majority of usages, which should only decode a single type
        per SqliteValue/SqliteValueRef.
      • See new docs on SqliteValue for details.
  • [[#​3949]]: Postgres: move PgLTree::from to From<Vec<PgLTreeLabel>> implementation [[@​JerryQ17]]
  • [[#​3957]]: refactor(sqlite): do not borrow bound values, delete lifetime on SqliteArguments [[@​iamjpotts]]
  • [[#​3958]]: refactor(any): Remove lifetime parameter from AnyArguments [[@​iamjpotts]]
  • [[#​3960]]: refactor(core): Remove lifetime parameter from Arguments trait [[@​iamjpotts]]
  • [[#​3993]]: Unescape PostgreSQL passfile password [[@​V02460]]
    • Previously, .pgpass file handling did not process backslash-escapes in the password part.
      Now it does, which may change what password is sent to the server.
  • [[#​4008]]: make #[derive(sqlx::Type)] automatically generate impl PgHasArrayType by default for newtype structs [[@​papaj-na-wrotkach]]
    • Manual implementations of PgHasArrayType for newtypes will conflict with the ge

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@github-actions

github-actions Bot commented Mar 16, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

ℹ️ Note

This PR body was truncated due to platform limits.

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path server/Cargo.toml --package anyhow@1.0.102 --precise 1.0.104
    Updating crates.io index
error: failed to select a version for `sqlx`.
    ... required by package `opencode-studio v0.1.12 (/tmp/renovate/repos/github/canxin121/opencode-studio/server)`
versions that meet the requirements `^0.9.0` are: 0.9.0

package `opencode-studio` depends on `sqlx` with feature `runtime-tokio-rustls` but `sqlx` does not have that feature.
help: available features: _rt-async-global-executor, _rt-async-std, _rt-smol, _rt-tokio, _sqlite, _unstable-all-types, _unstable-docs, all-databases, any, bigdecimal, bit-vec, bstr, chrono, default, derive, ipnet, ipnetwork, json, mac_address, macros, migrate, mysql, mysql-rsa, postgres, regexp, runtime-async-global-executor, runtime-async-std, runtime-smol, runtime-tokio, rust_decimal, sqlite, sqlite-bundled, sqlite-deserialize, sqlite-load-extension, sqlite-preupdate-hook, sqlite-unbundled, sqlite-unlock-notify, sqlx-macros, sqlx-mysql, sqlx-postgres, sqlx-sqlite, sqlx-toml, time, tls-native-tls, tls-none, tls-rustls, tls-rustls-aws-lc-rs, tls-rustls-ring, tls-rustls-ring-native-roots, tls-rustls-ring-webpki, uuid


failed to select a version for `sqlx` which could resolve this conflict

File name: desktop/src-tauri-cef/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path desktop/src-tauri-cef/Cargo.toml --package tauri@2.10.2 --precise 2.11.5
    Updating git repository `https://github.com/tauri-apps/tauri`
From https://github.com/tauri-apps/tauri
 * [new branch]          1.0                         -> origin/1.0
 * [new branch]          1.1                         -> origin/1.1
 * [new branch]          1.2                         -> origin/1.2
 * [new branch]          1.3                         -> origin/1.3
 * [new branch]          1.6                         -> origin/1.6
 * [new branch]          1.x                         -> origin/1.x
 * [new branch]          1.x-edition2024             -> origin/1.x-edition2024
 * [new branch]          amr/cef-gtk4                -> origin/amr/cef-gtk4
 * [new branch]          cef-appimage-fix            -> origin/cef-appimage-fix
 * [new branch]          chore/enable-multiple-scenes -> origin/chore/enable-multiple-scenes
 * [new branch]          chore/ios-network-msg       -> origin/chore/ios-network-msg
 * [new branch]          deps/rpm                    -> origin/deps/rpm
 * [new branch]          dev                         -> origin/dev
 * [new branch]          fabianlars/tty-test         -> origin/fabianlars/tty-test
 * [new branch]          feat/allowlist              -> origin/feat/allowlist
 * [new branch]          feat/android-embedded-activity-generator -> origin/feat/android-embedded-activity-generator
 * [new branch]          feat/bindings               -> origin/feat/bindings
 * [new branch]          feat/build-pipeline         -> origin/feat/build-pipeline
 * [new branch]          feat/capability-dev-only    -> origin/feat/capability-dev-only
 * [new branch]          feat/cef                    -> origin/feat/cef
 * [new branch]          feat/ci-ios-test            -> origin/feat/ci-ios-test
 * [new branch]          feat/cli-async              -> origin/feat/cli-async
 * [new branch]          feat/cli/kill-dev-app-api   -> origin/feat/cli/kill-dev-app-api
 * [new branch]          feat/command-tests          -> origin/feat/command-tests
 * [new branch]          feat/e2e                    -> origin/feat/e2e
 * [new branch]          feat/ensure-environment-matches -> origin/feat/ensure-environment-matches
 * [new branch]          feat/event-raw-data         -> origin/feat/event-raw-data
 * [new branch]          feat/icon-macos-padding     -> origin/feat/icon-macos-padding
 * [new branch]          feat/jsr                    -> origin/feat/jsr
 * [new branch]          feat/macos-liquid-glass     -> origin/feat/macos-liquid-glass
 * [new branch]          feat/manager-run-on-main-thread-return -> origin/feat/manager-run-on-main-thread-return
 * [new branch]          feat/menu-item-handler      -> origin/feat/menu-item-handler
 * [new branch]          feat/mock-runtime-impl      -> origin/feat/mock-runtime-impl
 * [new branch]          feat/on-new-window-config   -> origin/feat/on-new-window-config
 * [new branch]          feat/open-harmony           -> origin/feat/open-harmony
 * [new branch]          feat/pipeline               -> origin/feat/pipeline
 * [new branch]          feat/referer-header         -> origin/feat/referer-header
 * [new branch]          feat/stderr-cmd-error       -> origin/feat/stderr-cmd-error
 * [new branch]          feat/tao-0.36               -> origin/feat/tao-0.36
 * [new branch]          feat/tracing2               -> origin/feat/tracing2
 * [new branch]          feat/truly-portable-appimage -> origin/feat/truly-portable-appimage
 * [new branch]          feat/webview-set-visibility -> origin/feat/webview-set-visibility
 * [new branch]          fix/ios-dirs-resolution     -> origin/fix/ios-dirs-resolution
 * [new branch]          fix/mobile-dev-proxy-body   -> origin/fix/mobile-dev-proxy-body
 * [new branch]          fix/remap-path-prefix       -> origin/fix/remap-path-prefix
 * [new branch]          fix/wait-webdriver          -> origin/fix/wait-webdriver
 * [new branch]          next                        -> origin/next
 * [new branch]          refactor/android-dev        -> origin/refactor/android-dev
 * [new branch]          refactor/ipc-response       -> origin/refactor/ipc-response
 * [new branch]          refactor/runtime-feature-flag -> origin/refactor/runtime-feature-flag
 * [new branch]          release/version-updates     -> origin/release/version-updates
 * [new branch]          renovate/aes-gcm-0.x        -> origin/renovate/aes-gcm-0.x
 * [new branch]          renovate/dom_query-0.x      -> origin/renovate/dom_query-0.x
 * [new branch]          renovate/jsonschema-0.x     -> origin/renovate/jsonschema-0.x
 * [new branch]          renovate/napi-rs-packages   -> origin/renovate/napi-rs-packages
 * [new branch]          renovate/syn-3.x            -> origin/renovate/syn-3.x
 * [new branch]          renovate/typescript-7.x     -> origin/renovate/typescript-7.x
 * [new branch]          renovate/windows-rs-and-webview2-crates -> origin/renovate/windows-rs-and-webview2-crates
 * [new ref]             HEAD                        -> origin/HEAD
 * [new tag]             0.5.2-binaries              -> 0.5.2-binaries
 * [new tag]             @tauri-apps/api-v1          -> @tauri-apps/api-v1
 * [new tag]             @tauri-apps/api-v1.4        -> @tauri-apps/api-v1.4
 * [new tag]             @tauri-apps/api-v1.4.0      -> @tauri-apps/api-v1.4.0
 * [new tag]             @tauri-apps/api-v1.5        -> @tauri-apps/api-v1.5
 * [new tag]             @tauri-apps/api-v1.5.0      -> @tauri-apps/api-v1.5.0
 * [new tag]             @tauri-apps/api-v1.5.1      -> @tauri-apps/api-v1.5.1
 * [new tag]             @tauri-apps/api-v1.5.2      -> @tauri-apps/api-v1.5.2
 * [new tag]             @tauri-apps/api-v1.5.3      -> @tauri-apps/api-v1.5.3
 * [new tag]             @tauri-apps/api-v1.5.4      -> @tauri-apps/api-v1.5.4
 * [new tag]             @tauri-apps/api-v1.5.5      -> @tauri-apps/api-v1.5.5
 * [new tag]             @tauri-apps/api-v1.5.6      -> @tauri-apps/api-v1.5.6
 * [new tag]             @tauri-apps/api-v1.6        -> @tauri-apps/api-v1.6
 * [new tag]             @tauri-apps/api-v1.6.0      -> @tauri-apps/api-v1.6.0
 * [new tag]             @tauri-apps/api-v2          -> @tauri-apps/api-v2
 * [new tag]             @tauri-apps/api-v2.0        -> @tauri-apps/api-v2.0
 * [new tag]             @tauri-apps/api-v2.0.0      -> @tauri-apps/api-v2.0.0
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.10 -> @tauri-apps/api-v2.0.0-alpha.10
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.11 -> @tauri-apps/api-v2.0.0-alpha.11
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.12 -> @tauri-apps/api-v2.0.0-alpha.12
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.13 -> @tauri-apps/api-v2.0.0-alpha.13
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.14 -> @tauri-apps/api-v2.0.0-alpha.14
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.5 -> @tauri-apps/api-v2.0.0-alpha.5
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.6 -> @tauri-apps/api-v2.0.0-alpha.6
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.7 -> @tauri-apps/api-v2.0.0-alpha.7
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.8 -> @tauri-apps/api-v2.0.0-alpha.8
 * [new tag]             @tauri-apps/api-v2.0.0-alpha.9 -> @tauri-apps/api-v2.0.0-alpha.9
 * [new tag]             @tauri-apps/api-v2.0.0-beta.0 -> @tauri-apps/api-v2.0.0-beta.0
 * [new tag]             @tauri-apps/api-v2.0.0-beta.1 -> @tauri-apps/api-v2.0.0-beta.1
 * [new tag]             @tauri-apps/api-v2.0.0-beta.10 -> @tauri-apps/api-v2.0.0-beta.10
 * [new tag]             @tauri-apps/api-v2.0.0-beta.11 -> @tauri-apps/api-v2.0.0-beta.11
 * [new tag]             @tauri-apps/api-v2.0.0-beta.12 -> @tauri-apps/api-v2.0.0-beta.12
 * [new tag]             @tauri-apps/api-v2.0.0-beta.13 -> @tauri-apps/api-v2.0.0-beta.13
 * [new tag]             @tauri-apps/api-v2.0.0-beta.14 -> @tauri-apps/api-v2.0.0-beta.14
 * [new tag]             @tauri-apps/api-v2.0.0-beta.15 -> @tauri-apps/api-v2.0.0-beta.15
 * [new tag]             @tauri-apps/api-v2.0.0-beta.16 -> @tauri-apps/api-v2.0.0-beta.16
 * [new tag]             @tauri-apps/api-v2.0.0-beta.2 -> @tauri-apps/api-v2.0.0-beta.2
 * [new tag]             @tauri-apps/api-v2.0.0-beta.3 -> @tauri-apps/api-v2.0.0-beta.3
 * [new tag]             @tauri-apps/api-v2.0.0-beta.4 -> @tauri-apps/api-v2.0.0-beta.4
 * [new tag]             @tauri-apps/api-v2.0.0-beta.5 -> @tauri-apps/api-v2.0.0-beta.5
 * [new tag]             @tauri-apps/api-v2.0.0-beta.6 -> @tauri-apps/api-v2.0.0-beta.6
 * [new tag]             @tauri-apps/api-v2.0.0-beta.7 -> @tauri-apps/api-v2.0.0-beta.7
 * [new tag]             @tauri-apps/api-v2.0.0-beta.8 -> @tauri-apps/api-v2.0.0-beta.8
 * [new tag]             @tauri-apps/api-v2.0.0-beta.9 -> @tauri-apps/api-v2.0.0-beta.9
 * [new tag]             @tauri-apps/api-v2.0.0-rc.0 -> @tauri-apps/api-v2.0.0-rc.0
 * [new tag]             @tauri-apps/api-v2.0.0-rc.1 -> @tauri-apps/api-v2.0.0-rc.1
 * [new tag]             @tauri-apps/api-v2.0.0-rc.2 -> @tauri-apps/api-v2.0.0-rc.2
 * [new tag]             @tauri-apps/api-v2.0.0-rc.3 -> @tauri-apps/api-v2.0.0-rc.3
 * [new tag]             @tauri-apps/api-v2.0.0-rc.4 -> @tauri-apps/api-v2.0.0-rc.4
 * [new tag]             @tauri-apps/api-v2.0.0-rc.5 -> @tauri-apps/api-v2.0.0-rc.5
 * [new tag]             @tauri-apps/api-v2.0.0-rc.6 -> @tauri-apps/api-v2.0.0-rc.6
 * [new tag]             @tauri-apps/api-v2.0.1      -> @tauri-apps/api-v2.0.1
 * [new tag]             @tauri-apps/api-v2.0.2      -> @tauri-apps/api-v2.0.2
 * [new tag]             @tauri-apps/api-v2.0.3      -> @tauri-apps/api-v2.0.3
 * [new tag]             @tauri-apps/api-v2.1.0      -> @tauri-apps/api-v2.1.0
 * [new tag]             @tauri-apps/api-v2.1.1      -> @tauri-apps/api-v2.1.1
 * [new tag]             @tauri-apps/api-v2.10.1     -> @tauri-apps/api-v2.10.1
 * [new tag]             @tauri-apps/api-v2.11.0     -> @tauri-apps/api-v2.11.0
 * [new tag]             @tauri-apps/api-v2.11.1     -> @tauri-apps/api-v2.11.1
 * [new tag]             @tauri-apps/api-v2.2.0      -> @tauri-apps/api-v2.2.0
 * [new tag]             @tauri-apps/api-v2.3.0      -> @tauri-apps/api-v2.3.0
 * [new tag]             @tauri-apps/api-v2.4.0      -> @tauri-apps/api-v2.4.0
 * [new tag]             @tauri-apps/api-v2.4.1      -> @tauri-apps/api-v2.4.1
 * [new tag]             @tauri-apps/api-v2.5.0      -> @tauri-apps/api-v2.5.0
 * [new tag]             @tauri-apps/api-v2.6.0      -> @tauri-apps/api-v2.6.0
 * [new tag]             @tauri-apps/api-v2.7.0      -> @tauri-apps/api-v2.7.0
 * [new tag]             @tauri-apps/api-v2.8.0      -> @tauri-apps/api-v2.8.0
 * [new tag]             @tauri-apps/api-v2.9.0      -> @tauri-apps/api-v2.9.0
 * [new tag]             @tauri-apps/api-v2.9.1      -> @tauri-apps/api-v2.9.1
 * [new tag]             @tauri-apps/cli-cef-v3.0.0-cef.0 -> @tauri-apps/cli-cef-v3.0.0-cef.0
 * [new tag]             @tauri-apps/cli-v1.4.0      -> @tauri-apps/cli-v1.4.0
 * [new tag]             @tauri-apps/cli-v1.5.0      -> @tauri-apps/cli-v1.5.0
 * [new tag]             @tauri-apps/cli-v1.5.1      -> @tauri-apps/cli-v1.5.1
 * [new tag]             @tauri-apps/cli-v1.5.10     -> @tauri-apps/cli-v1.5.10
 * [new tag]             @tauri-apps/cli-v1.5.11     -> @tauri-apps/cli-v1.5.11
 * [new tag]             @tauri-apps/cli-v1.5.12     -> @tauri-apps/cli-v1.5.12
 * [new tag]             @tauri-apps/cli-v1.5.13     -> @tauri-apps/cli-v1.5.13
 * [new tag]             @tauri-apps/cli-v1.5.14     -> @tauri-apps/cli-v1.5.14
 * [new tag]             @tauri-apps/cli-v1.5.2      -> @tauri-apps/cli-v1.5.2
 * [new tag]             @tauri-apps/cli-v1.5.3      -> @tauri-apps/cli-v1.5.3
 * [new tag]             @tauri-apps/cli-v1.5.4      -> @tauri-apps/cli-v1.5.4
 * [new tag]             @tauri-apps/cli-v1.5.5      -> @tauri-apps/cli-v1.5.5
 * [new tag]             @tauri-apps/cli-v1.5.6      -> @tauri-apps/cli-v1.5.6
 * [new tag]             @tauri-apps/cli-v1.5.7      -> @tauri-apps/cli-v1.5.7
 * [new tag]             @tauri-apps/cli-v1.5.8      -> @tauri-apps/cli-v1.5.8
 * [new tag]             @tauri-apps/cli-v1.5.9      -> @tauri-apps/cli-v1.5.9
 * [new tag]             @tauri-apps/cli-v1.6.0      -> @tauri-apps/cli-v1.6.0
 * [new tag]             @tauri-apps/cli-v1.6.1      -> @tauri-apps/cli-v1.6.1
 * [new tag]             @tauri-apps/cli-v1.6.2      -> @tauri-apps/cli-v1.6.2
 * [new tag]             @tauri-apps/cli-v1.6.3      -> @tauri-apps/cli-v1.6.3
 * [new tag]             @tauri-apps/cli-v1.6.4      -> @tauri-apps/cli-v1.6.4
 * [new tag]             @tauri-apps/cli-v1.6.5      -> @tauri-apps/cli-v1.6.5
 * [new tag]             @tauri-apps/cli-v1.6.6      -> @tauri-apps/cli-v1.6.6
 * [new tag]             @tauri-apps/cli-v2.0.0      -> @tauri-apps/cli-v2.0.0
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.10 -> @tauri-apps/cli-v2.0.0-alpha.10
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.11 -> @tauri-apps/cli-v2.0.0-alpha.11
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.12 -> @tauri-apps/cli-v2.0.0-alpha.12
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.13 -> @tauri-apps/cli-v2.0.0-alpha.13
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.14 -> @tauri-apps/cli-v2.0.0-alpha.14
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.15 -> @tauri-apps/cli-v2.0.0-alpha.15
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.16 -> @tauri-apps/cli-v2.0.0-alpha.16
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.17 -> @tauri-apps/cli-v2.0.0-alpha.17
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.18 -> @tauri-apps/cli-v2.0.0-alpha.18
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.19 -> @tauri-apps/cli-v2.0.0-alpha.19
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.20 -> @tauri-apps/cli-v2.0.0-alpha.20
 * [new tag]             @tauri-apps/cli-v2.0.0-alpha.21 -> @tauri-apps/cli-v2.0.0-alpha.21
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.0 -> @tauri-apps/cli-v2.0.0-beta.0
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.1 -> @tauri-apps/cli-v2.0.0-beta.1
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.10 -> @tauri-apps/cli-v2.0.0-beta.10
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.11 -> @tauri-apps/cli-v2.0.0-beta.11
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.12 -> @tauri-apps/cli-v2.0.0-beta.12
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.13 -> @tauri-apps/cli-v2.0.0-beta.13
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.14 -> @tauri-apps/cli-v2.0.0-beta.14
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.15 -> @tauri-apps/cli-v2.0.0-beta.15
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.16 -> @tauri-apps/cli-v2.0.0-beta.16
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.17 -> @tauri-apps/cli-v2.0.0-beta.17
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.18 -> @tauri-apps/cli-v2.0.0-beta.18
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.19 -> @tauri-apps/cli-v2.0.0-beta.19
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.2 -> @tauri-apps/cli-v2.0.0-beta.2
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.20 -> @tauri-apps/cli-v2.0.0-beta.20
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.21 -> @tauri-apps/cli-v2.0.0-beta.21
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.22 -> @tauri-apps/cli-v2.0.0-beta.22
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.23 -> @tauri-apps/cli-v2.0.0-beta.23
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.3 -> @tauri-apps/cli-v2.0.0-beta.3
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.4 -> @tauri-apps/cli-v2.0.0-beta.4
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.5 -> @tauri-apps/cli-v2.0.0-beta.5
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.6 -> @tauri-apps/cli-v2.0.0-beta.6
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.7 -> @tauri-apps/cli-v2.0.0-beta.7
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.8 -> @tauri-apps/cli-v2.0.0-beta.8
 * [new tag]             @tauri-apps/cli-v2.0.0-beta.9 -> @tauri-apps/cli-v2.0.0-beta.9
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.0 -> @tauri-apps/cli-v2.0.0-rc.0
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.1 -> @tauri-apps/cli-v2.0.0-rc.1
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.10 -> @tauri-apps/cli-v2.0.0-rc.10
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.11 -> @tauri-apps/cli-v2.0.0-rc.11
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.12 -> @tauri-apps/cli-v2.0.0-rc.12
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.13 -> @tauri-apps/cli-v2.0.0-rc.13
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.14 -> @tauri-apps/cli-v2.0.0-rc.14
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.15 -> @tauri-apps/cli-v2.0.0-rc.15
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.16 -> @tauri-apps/cli-v2.0.0-rc.16
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.17 -> @tauri-apps/cli-v2.0.0-rc.17
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.18 -> @tauri-apps/cli-v2.0.0-rc.18
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.2 -> @tauri-apps/cli-v2.0.0-rc.2
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.3 -> @tauri-apps/cli-v2.0.0-rc.3
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.4 -> @tauri-apps/cli-v2.0.0-rc.4
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.5 -> @tauri-apps/cli-v2.0.0-rc.5
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.6 -> @tauri-apps/cli-v2.0.0-rc.6
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.7 -> @tauri-apps/cli-v2.0.0-rc.7
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.8 -> @tauri-apps/cli-v2.0.0-rc.8
 * [new tag]             @tauri-apps/cli-v2.0.0-rc.9 -> @tauri-apps/cli-v2.0.0-rc.9
 * [new tag]             @tauri-apps/cli-v2.0.1      -> @tauri-apps/cli-v2.0.1
 * [new tag]             @tauri-apps/cli-v2.0.2      -> @tauri-apps/cli-v2.0.2
 * [new tag]             @tauri-apps/cli-v2.0.3      -> @tauri-apps/cli-v2.0.3
 * [new tag]             @tauri-apps/cli-v2.0.4      -> @tauri-apps/cli-v2.0.4
 * [new tag]             @tauri-apps/cli-v2.1.0      -> @tauri-apps/cli-v2.1.0
 * [new tag]             @tauri-apps/cli-v2.10.0     -> @tauri-apps/cli-v2.10.0
 * [new tag]             @tauri-apps/cli-v2.10.1     -> @tauri-apps/cli-v2.10.1
 * [new tag]             @tauri-apps/cli-v2.11.0     -> @tauri-apps/cli-v2.11.0
 * [new tag]             @tauri-apps/cli-v2.11.1     -> @tauri-apps/cli-v2.11.1
 * [new tag]             @tauri-apps/cli-v2.11.2     -> @tauri-apps/cli-v2.11.2
 * [new tag]             @tauri-apps/cli-v2.11.3     -> @tauri-apps/cli-v2.11.3
 * [new tag]             @tauri-apps/cli-v2.11.4     -> @tauri-apps/cli-v2.11.4
 * [new tag]             @tauri-apps/cli-v2.2.0      -> @tauri-apps/cli-v2.2.0
 * [new tag]             @tauri-apps/cli-v2.2.1      -> @tauri-apps/cli-v2.2.1
 * [new tag]             @tauri-apps/cli-v2.2.2      -> @tauri-apps/cli-v2.2.2
 * [new tag]             @tauri-apps/cli-v2.2.3      -> @tauri-apps/cli-v2.2.3
 * [new tag]             @tauri-apps/cli-v2.2.4      -> @tauri-apps/cli-v2.2.4
 * [new tag]             @tauri-apps/cli-v2.2.5      -> @tauri-apps/cli-v2.2.5
 * [new tag]             @tauri-apps/cli-v2.2.6      -> @tauri-apps/cli-v2.2.6
 * [new tag]             @tauri-apps/cli-v2.2.7      -> @tauri-apps/cli-v2.2.7
 * [new tag]             @tauri-apps/cli-v2.3.0      -> @tauri-apps/cli-v2.3.0
 * [new tag]             @tauri-apps/cli-v2.3.1      -> @tauri-apps/cli-v2.3.1
 * [new tag]             @tauri-apps/cli-v2.4.0      -> @tauri-apps/cli-v2.4.0
 * [new tag]             @tauri-apps/cli-v2.4.1      -> @tauri-apps/cli-v2.4.1
 * [new tag]             @tauri-apps/cli-v2.5.0      -> @tauri-apps/cli-v2.5.0
 * [new tag]             @tauri-apps/cli-v2.6.0      -> @tauri-apps/cli-v2.6.0
 * [new tag]             @tauri-apps/cli-v2.6.1      -> @tauri-apps/cli-v2.6.1
 * [new tag]             @tauri-apps/cli-v2.6.2      -> @tauri-apps/cli-v2.6.2
 * [new tag]             @tauri-apps/cli-v2.6.3      -> @tauri-apps/cli-v2.6.3
 * [new tag]             @tauri-apps/cli-v2.7.0      -> @tauri-apps/cli-v2.7.0
 * [new tag]             @tauri-apps/cli-v2.7.1      -> @tauri-apps/cli-v2.7.1
 * [new tag]             @tauri-apps/cli-v2.8.0      -> @tauri-apps/cli-v2.8.0
 * [new tag]             @tauri-apps/cli-v2.8.1      -> @tauri-apps/cli-v2.8.1
 * [new tag]             @tauri-apps/cli-v2.8.2      -> @tauri-apps/cli-v2.8.2
 * [new tag]             @tauri-apps/cli-v2.8.3      -> @tauri-apps/cli-v2.8.3
 * [new tag]             @tauri-apps/cli-v2.8.4      -> @tauri-apps/cli-v2.8.4
 * [new tag]             @tauri-apps/cli-v2.9.0      -> @tauri-apps/cli-v2.9.0
 * [new tag]             @tauri-apps/cli-v2.9.1      -> @tauri-apps/cli-v2.9.1
 * [new tag]             @tauri-apps/cli-v2.9.2      -> @tauri-apps/cli-v2.9.2
 * [new tag]             @tauri-apps/cli-v2.9.3      -> @tauri-apps/cli-v2.9.3
 * [new tag]             @tauri-apps/cli-v2.9.4      -> @tauri-apps/cli-v2.9.4
 * [new tag]             @tauri-apps/cli-v2.9.5      -> @tauri-apps/cli-v2.9.5
 * [new tag]             @tauri-apps/cli-v2.9.6      -> @tauri-apps/cli-v2.9.6
 * [new tag]             api-v1                      -> api-v1
 * [new tag]             api-v1.0                    -> api-v1.0
 * [new tag]             api-v1.0.0                  -> api-v1.0.0
 * [new tag]             api-v1.0.0-beta-rc.0        -> api-v1.0.0-beta-rc.0
 * [new tag]             api-v1.0.0-beta-rc.1        -> api-v1.0.0-beta-rc.1
 * [new tag]             api-v1.0.0-rc.1             -> api-v1.0.0-rc.1
 * [new tag]             api-v1.0.0-rc.2             -> api-v1.0.0-rc.2
 * [new tag]             api-v1.0.0-rc.3             -> api-v1.0.0-rc.3
 * [new tag]             api-v1.0.0-rc.4             -> api-v1.0.0-rc.4
 * [new tag]             api-v1.0.0-rc.5             -> api-v1.0.0-rc.5
 * [new tag]             api-v1.0.0-rc.6             -> api-v1.0.0-rc.6
 * [new tag]             api-v1.0.0-rc.7             -> api-v1.0.0-rc.7
 * [new tag]             api-v1.0.1                  -> api-v1.0.1
 * [new tag]             api-v1.0.2                  -> api-v1.0.2
 * [new tag]             api-v1.1                    -> api-v1.1
 * [new tag]             api-v1.1.0                  -> api-v1.1.0
 * [new tag]             api-v1.2.0                  -> api-v1.2.0
 * [new tag]             api-v1.3                    -> api-v1.3
 * [new tag]             api-v1.3.0                  -> api-v1.3.0
 * [new tag]             api-v2                      -> api-v2
 * [new tag]             api-v2.0                    -> api-v2.0
 * [new tag]             api-v2.0.0-alpha.0          -> api-v2.0.0-alpha.0
 * [new tag]             api-v2.0.0-alpha.1          -> api-v2.0.0-alpha.1
 * [new tag]             api-v2.0.0-alpha.2          -> api-v2.0.0-alpha.2
 * [new tag]             api-v2.0.0-alpha.3          -> api-v2.0.0-alpha.3
 * [new tag]             api-v2.0.0-alpha.4          -> api-v2.0.0-alpha.4
 * [new tag]             cli.js-v1                   -> cli.js-v1
 * [new tag]             cli.js-v1.0                 -> cli.js-v1.0
 * [new tag]             cli.js-v1.0.0               -> cli.js-v1.0.0
 * [new tag]             cli.js-v1.0.0-beta-rc.0     -> cli.js-v1.0.0-beta-rc.0
 * [new tag]             cli.js-v1.0.0-beta-rc.1     -> cli.js-v1.0.0-beta-rc.1
 * [new tag]             cli.js-v1.0.0-beta-rc.2     -> cli.js-v1.0.0-beta-rc.2
 * [new tag]             cli.js-v1.0.0-beta-rc.3     -> cli.js-v1.0.0-beta-rc.3
 * [new tag]             cli.js-v1.0.0-beta-rc.4     -> cli.js-v1.0.0-beta-rc.4
 * [new tag]             cli.js-v1.0.0-beta.0        -> cli.js-v1.0.0-beta.0
 * [new tag]             cli.js-v1.0.0-beta.1        -> cli.js-v1.0.0-beta.1
 * [new tag]             cli.js-v1.0.0-beta.10       -> cli.js-v1.0.0-beta.10
 * [new tag]             cli.js-v1.0.0-beta.2        -> cli.js-v1.0.0-beta.2
 * [new tag]             cli.js-v1.0.0-beta.3        -> cli.js-v1.0.0-beta.3
 * [new tag]             cli.js-v1.0.0-beta.4        -> cli.js-v1.0.0-beta.4
 * [new tag]             cli.js-v1.0.0-beta.5        -> cli.js-v1.0.0-beta.5
 * [new tag]             cli.js-v1.0.0-beta.6        -> cli.js-v1.0.0-beta.6
 * [new tag]             cli.js-v1.0.0-beta.7        -> cli.js-v1.0.0-beta.7
 * [new tag]             cli.js-v1.0.0-beta.8        -> cli.js-v1.0.0-beta.8
 * [new tag]             cli.js-v1.0.0-beta.9        -> cli.js-v1.0.0-beta.9
 * [new tag]             cli.js-v1.0.0-rc.10         -> cli.js-v1.0.0-rc.10
 * [new tag]             cli.js-v1.0.0-rc.11         -> cli.js-v1.0.0-rc.11
 * [new tag]             cli.js-v1.0.0-rc.12         -> cli.js-v1.0.0-rc.12
 * [new tag]             cli.js-v1.0.0-rc.13         -> cli.js-v1.0.0-rc.13
 * [new tag]             cli.js-v1.0.0-rc.14         -> cli.js-v1.0.0-rc.14
 * [new tag]             cli.js-v1.0.0-rc.15         -> cli.js-v1.0.0-rc.15
 * [new tag]             cli.js-v1.0.0-rc.16         -> cli.js-v1.0.0-rc.16
 * [new tag]             cli.js-v1.0.0-rc.5          -> cli.js-v1.0.0-rc.5
 * [new tag]             cli.js-v1.0.0-rc.6          -> cli.js-v1.0.0-rc.6
 * [new tag]             cli.js-v1.0.0-rc.8          -> cli.js-v1.0.0-rc.8
 * [new tag]             cli.js-v1.0.0-rc.9          -> cli.js-v1.0.0-rc.9
 * [new tag]             cli.js-v1.0.1               -> cli.js-v1.0.1
 * [new tag]             cli.js-v1.0.2               -> cli.js-v1.0.2
 * [new tag]             cli.js-v1.0.3               -> cli.js-v1.0.3
 * [new tag]             cli.js-v1.0.4               -> cli.js-v1.0.4
 * [new tag]             cli.js-v1.0.5               -> cli.js-v1.0.5
 * [new tag]             cli.js-v1.1.0               -> cli.js-v1.1.0
 * [new tag]             cli.js-v1.1.1               -> cli.js-v1.1.1
 * [new tag]             cli.js-v1.2.0               -> cli.js-v1.2.0
 * [new tag]             cli.js-v1.2.1               -> cli.js-v1.2.1
 * [new tag]             cli.js-v1.2.2               -> cli.js-v1.2.2
 * [new tag]             cli.js-v1.2.3               -> cli.js-v1.2.3
 * [new tag]             cli.js-v1.3.0               -> cli.js-v1.3.0
 * [new tag]             cli.js-v1.3.1               -> cli.js-v1.3.1
 * [new tag]             cli.js-v2.0.0-alpha.0       -> cli.js-v2.0.0-alpha.0
 * [new tag]             cli.js-v2.0.0-alpha.1       -> cli.js-v2.0.0-alpha.1
 * [new tag]             cli.js-v2.0.0-alpha.2       -> cli.js-v2.0.0-alpha.2
 * [new tag]             cli.js-v2.0.0-alpha.3       -> cli.js-v2.0.0-alpha.3
 * [new tag]             cli.js-v2.0.0-alpha.4       -> cli.js-v2.0.0-alpha.4
 * [new tag]             cli.js-v2.0.0-alpha.5       -> cli.js-v2.0.0-alpha.5
 * [new tag]             cli.js-v2.0.0-alpha.6       -> cli.js-v2.0.0-alpha.6
 * [new tag]             cli.js-v2.0.0-alpha.7       -> cli.js-v2.0.0-alpha.7
 * [new tag]             cli.js-v2.0.0-alpha.8       -> cli.js-v2.0.0-alpha.8
 * [new tag]             cli.js-v2.0.0-alpha.9       -> cli.js-v2.0.0-alpha.9
 * [new tag]             cli.rs-v1                   -> cli.rs-v1
 * [new tag]             cli.rs-v1.0                 -> cli.rs-v1.0
 * [new tag]             cli.rs-v1.0.0               -> cli.rs-v1.0.0
 * [new tag]             cli.rs-v1.0.0-beta-rc.0     -> cli.rs-v1.0.0-beta-rc.0
 * [new tag]             cli.rs-v1.0.0-beta-rc.1     -> cli.rs-v1.0.0-beta-rc.1
 * [new tag]             cli.rs-v1.0.0-beta-rc.2     -> cli.rs-v1.0.0-beta-rc.2
 * [new tag]             cli.rs-v1.0.0-beta-rc.3     -> cli.rs-v1.0.0-beta-rc.3
 * [new tag]             cli.rs-v1.0.0-beta-rc.4     -> cli.rs-v1.0.0-beta-rc.4
 * [new tag]             cli.rs-v1.0.0-beta.0        -> cli.rs-v1.0.0-beta.0
 * [new tag]             cli.rs-v1.0.0-beta.1        -> cli.rs-v1.0.0-beta.1
 * [new tag]             cli.rs-v1.0.0-beta.2        -> cli.rs-v1.0.0-beta.2
 * [new tag]             cli.rs-v1.0.0-beta.3        -> cli.rs-v1.0.0-beta.3
 * [new tag]             cli.rs-v1.0.0-beta.4        -> cli.rs-v1.0.0-beta.4
 * [new tag]             cli.rs-v1.0.0-beta.5        -> cli.rs-v1.0.0-beta.5
 * [new tag]             cli.rs-v1.0.0-beta.6        -> cli.rs-v1.0.0-beta.6
 * [new tag]             cli.rs-v1.0.0-beta.7        -> cli.rs-v1.0.0-beta.7
 * [new tag]             cli.rs-v1.0.0-rc.0          -> cli.rs-v1.0.0-rc.0
 * [new tag]             cli.rs-v1.0.0-rc.1          -> cli.rs-v1.0.0-rc.1
 * [new tag]             cli.rs-v1.0.0-rc.10         -> cli.rs-v1.0.0-rc.10
 * [new tag]             cli.rs-v1.0.0-rc.11         -> cli.rs-v1.0.0-rc.11
 * [new tag]             cli.rs-v1.0.0-rc.12         -> cli.rs-v1.0.0-rc.12
 * [new tag]             cli.rs-v1.0.0-rc.13         -> cli.rs-v1.0.0-rc.13
 * [new tag]             cli.rs-v1.0.0-rc.14         -> cli.rs-v1.0.0-rc.14
 * [new tag]             cli.rs-v1.0.0-rc.15         -> cli.rs-v1.0.0-rc.15
 * [new tag]             cli.rs-v1.0.0-rc.16         -> cli.rs-v1.0.0-rc.16
 * [new tag]             cli.rs-v1.0.0-rc.2          -> cli.rs-v1.0.0-rc.2
 * [new tag]             cli.rs-v1.0.0-rc.3          -> cli.rs-v1.0.0-rc.3
 * [new tag]             cli.rs-v1.0.0-rc.4          -> cli.rs-v1.0.0-rc.4
 * [new tag]             cli.rs-v1.0.0-rc.5          -> cli.rs-v1.0.0-rc.5
 * [new tag]             cli.rs-v1.0.0-rc.6          -> cli.rs-v1.0.0-rc.6
 * [new tag]             cli.rs-v1.0.0-rc.7          -> cli.rs-v1.0.0-rc.7
 * [new tag]             cli.rs-v1.0.0-rc.8          -> cli.rs-v1.0.0-rc.8
 * [new tag]             cli.rs-v1.0.0-rc.9          -> cli.rs-v1.0.0-rc.9
 * [new tag]             cli.rs-v1.0.1               -> cli.rs-v1.0.1
 * [new tag]             cli.rs-v1.0.2               -> cli.rs-v1.0.2
 * [new tag]             cli.rs-v1.0.3               -> cli.rs-v1.0.3
 * [new tag]             cli.rs-v1.0.4               -> cli.rs-v1.0.4
 * [new tag]             cli.rs-v1.0.5               -> cli.rs-v1.0.5
 * [new tag]             cli.rs-v1.1                 -> cli.rs-v1.1
 * [new tag]             cli.rs-v1.1.0               -> cli.rs-v1.1.0
 * [new tag]             cli.rs-v1.1.1               -> cli.rs-v1.1.1
 * [new tag]             cli.rs-v1.2                 -> cli.rs-v1.2
 * [new tag]             cli.rs-v1.2.0               -> cli.rs-v1.2.0
 * [new tag]             cli.rs-v1.2.1               -> cli.rs-v1.2.1
 * [new tag]             cli.rs-v1.2.2               -> cli.rs-v1.2.2
 * [new tag]             cli.rs-v1.2.3               -> cli.rs-v1.2.3
 * [new tag]             cli.rs-v1.3                 -> cli.rs-v1.3
 * [new tag]             cli.rs-v1.3.0               -> cli.rs-v1.3.0
 * [new tag]             cli.rs-v1.3.1               -> cli.rs-v1.3.1
 * [new tag]             cli.rs-v2                   -> cli.rs-v2
 * [new tag]             cli.rs-v2.0                 -> cli.rs-v2.0
 * [new tag]             cli.rs-v2.0.0-alpha.0       -> cli.rs-v2.0.0-alpha.0
 * [new tag]             cli.rs-v2.0.0-alpha.1       -> cli.rs-v2.0.0-alpha.1
 * [new tag]             cli.rs-v2.0.0-alpha.2       -> cli.rs-v2.0.0-alpha.2
 * [new tag]             cli.rs-v2.0.0-alpha.3       -> cli.rs-v2.0.0-alpha.3
 * [new tag]             cli.rs-v2.0.0-alpha.4       -> cli.rs-v2.0.0-alpha.4
 * [new tag]             cli.rs-v2.0.0-alpha.5       -> cli.rs-v2.0.0-alpha.5
 * [new tag]             cli.rs-v2.0.0-alpha.6       -> cli.rs-v2.0.0-alpha.6
 * [new tag]             cli.rs-v2.0.0-alpha.7       -> cli.rs-v2.0.0-alpha.7
 * [new tag]             cli.rs-v2.0.0-alpha.8       -> cli.rs-v2.0.0-alpha.8
 * [new tag]             cli.rs-v2.0.0-alpha.9       -> cli.rs-v2.0.0-alpha.9
 * [new tag]             create-tauri-app-v1         -> create-tauri-app-v1
 * [new tag]             create-tauri-app-v1.0       -> create-tauri-app-v1.0
 * [new tag]             create-tauri-app-v1.0.0-beta-rc.0 -> create-tauri-app-v1.0.0-beta-rc.0
 * [new tag]             create-tauri-app-v1.0.0-beta-rc.1 -> create-tauri-app-v1.0.0-beta-rc.1
 * [new tag]             create-tauri-app-v1.0.0-beta-rc.2 -> create-tauri-app-v1.0.0-beta-rc.2
 * [new tag]             create-tauri-app-v1.0.0-beta-rc.3 -> create-tauri-app-v1.0.0-beta-rc.3
 * [new tag]             create-tauri-app-v1.0.0-beta-rc.4 -> create-tauri-app-v1.0.0-beta-rc.4
 * [new tag]             create-tauri-app-v1.0.0-beta.0 -> create-tauri-app-v1.0.0-beta.0
 * [new tag]             create-tauri-app-v1.0.0-beta.1 -> create-tauri-app-v1.0.0-beta.1
 * [new tag]             create-tauri-app-v1.0.0-beta.2 -> create-tauri-app-v1.0.0-beta.2
 * [new tag]             create-tauri-app-v1.0.0-beta.3 -> create-tauri-app-v1.0.0-beta.3
 * [new tag]             create-tauri-app-v1.0.0-beta.4 -> create-tauri-app-v1.0.0-beta.4
 * [new tag]             create-tauri-app-v1.0.0-rc.0 -> create-tauri-app-v1.0.0-rc.0
 * [new tag]             create-tauri-app-v1.0.0-rc.1 -> create-tauri-app-v1.0.0-rc.1
 * [new tag]             create-tauri-app-v1.0.0-rc.2 -> create-tauri-app-v1.0.0-rc.2
 * [new tag]             tauri-api-v0                -> tauri-api-v0
 * [new tag]             tauri-api-v0.4.0            -> tauri-api-v0.4.0
 * [new tag]             tauri-api-v0.4.1            -> tauri-api-v0.4.1
 * [new tag]             tauri-api-v0.4.2            -> tauri-api-v0.4.2
 * [new tag]             tauri-api-v0.5.0            -> tauri-api-v0.5.0
 * [new tag]             tauri-api-v0.5.1            -> tauri-api-v0.5.1
 * [new tag]             tauri-api-v0.5.2            -> tauri-api-v0.5.2
 * [new tag]             tauri-api-v0.6.0            -> tauri-api-v0.6.0
 * [new tag]             tauri-api-v0.6.1            -> tauri-api-v0.6.1
 * [new tag]             tauri-api-v0.7              -> tauri-api-v0.7
 * [new tag]             tauri-api-v0.7.0            -> tauri-api-v0.7.0
 * [new tag]             tauri-api-v0.7.1            -> tauri-api-v0.7.1
 * [new tag]             tauri-api-v0.7.2            -> tauri-api-v0.7.2
 * [new tag]             tauri-api-v0.7.3            -> tauri-api-v0.7.3
 * [new tag]             tauri-api-v0.7.5            -> tauri-api-v0.7.5
 * [new tag]             tauri-build-v1              -> tauri-build-v1
 * [new tag]             tauri-build-v1.0            -> tauri-build-v1.0
 * [new tag]             tauri-build-v1.0.0          -> tauri-build-v1.0.0
 * [new tag]             tauri-build-v1.0.0-beta-rc.0 -> tauri-build-v1.0.0-beta-rc.0
 * [new tag]             tauri-build-v1.0.0-beta-rc.1 -> tauri-build-v1.0.0-beta-rc.1
 * [new tag]             tauri-build-v1.0.0-beta.0   -> tauri-build-v1.0.0-beta.0
 * [new tag]             tauri-build-v1.0.0-beta.1   -> tauri-build-v1.0.0-beta.1
 * [new tag]             tauri-build-v1.0.0-beta.2   -> tauri-build-v1.0.0-beta.2
 * [new tag]             tauri-build-v1.0.0-beta.3   -> tauri-build-v1.0.0-beta.3
 * [new tag]             tauri-build-v1.0.0-beta.4   -> tauri-build-v1.0.0-beta.4
 * [new tag]             tauri-build-v1.0.0-rc.0     -> tauri-build-v1.0.0-rc.0
 * [new tag]             tauri-build-v1.0.0-rc.1     -> tauri-build-v1.0.0-rc.1
 * [new tag]             tauri-build-v1.0.0-rc.10    -> tauri-build-v1.0.0-rc.10
 * [new tag]             tauri-build-v1.0.0-rc.11    -> tauri-build-v1.0.0-rc.11
 * [new tag]             tauri-build-v1.0.0-rc.12    -> tauri-build-v1.0.0-rc.12
 * [new tag]             tauri-build-v1.0.0-rc.13    -> tauri-build-v1.0.0-rc.13
 * [new tag]             tauri-build-v1.0.0-rc.14    -> tauri-build-v1.0.0-rc.14
 * [new tag]             tauri-build-v1.0.0-rc.15    -> tauri-build-v1.0.0-rc.15
 * [new tag]             tauri-build-v1.0.0-rc.2     -> tauri-build-v1.0.0-rc.2
 * [new tag]             tauri-build-v1.0.0-rc.3     -> tauri-build-v1.0.0-rc.3
 * [new tag]             tauri-build-v1.0.0-rc.4     -> tauri-build-v1.0.0-rc.4
 * [new tag]             tauri-build-v1.0.0-rc.5     -> tauri-build-v1.0.0-rc.5
 * [new tag]             tauri-build-v1.0.0-rc.6     -> tauri-build-v1.0.0-rc.6
 * [new tag]             tauri-build-v1.0.0-rc.7     -> tauri-build-v1.0.0-rc.7
 * [new tag]             tauri-build-v1.0.0-rc.8     -> tauri-build-v1.0.0-rc.8
 * [new tag]             tauri-build-v1.0.0-rc.9     -> tauri-build-v1.0.0-rc.9
 * [new tag]             tauri-build-v1.0.1          -> tauri-build-v1.0.1
 * [new tag]             tauri-build-v1.0.2          -> tauri-build-v1.0.2
 * [new tag]             tauri-build-v1.0.3          -> tauri-build-v1.0.3
 * [new tag]             tauri-build-v1.0.4          -> tauri-build-v1.0.4
 * [new tag]             tauri-build-v1.1            -> tauri-build-v1.1
 * [new tag]             tauri-build-v1.1.0          -> tauri-build-v1.1.0
 * [new tag]             tauri-build-v1.1.1          -> tauri-build-v1.1.1
 * [new tag]             tauri-build-v1.2            -> tauri-build-v1.2
 * [new tag]             tauri-build-v1.2.0          -> tauri-build-v1.2.0
 * [new tag]             tauri-build-v1.2.1          -> tauri-build-v1.2.1
 * [new tag]             tauri-build-v1.3            -> tauri-build-v1.3
 * [new tag]             tauri-build-v1.3.0          -> tauri-build-v1.3.0
 * [new tag]             tauri-build-v1.4            -> tauri-build-v1.4
 * [new tag]             tauri-build-v1.4.0          -> tauri-build-v1.4.0
 * [new tag]             tauri-build-v1.4.1          -> tauri-build-v1.4.1
 * [new tag]             tauri-build-v1.5            -> tauri-build-v1.5
 * [new tag]             tauri-build-v1.5.0          -> tauri-build-v1.5.0
 * [new tag]             tauri-build-v1.5.1          -> tauri-build-v1.5.1
 * [new tag]             tauri-build-v1.5.2          -> tauri-build-v1.5.2
 * [new tag]             tauri-build-v1.5.3          -> tauri-build-v1.5.3
 * [new tag]             tauri-build-v1.5.4          -> tauri-build-v1.5.4
 * [new tag]             tauri-build-v1.5.5          -> tauri-build-v1.5.5
 * [new tag]             tauri-build-v1.5.6          -> tauri-build-v1.5.6
 * [new tag]             tauri-build-v1.5.7-edition2024.0 -> tauri-build-v1.5.7-edition2024.0
 * [new tag]             tauri-build-v2              -> tauri-build-v2
 * [new tag]             tauri-build-v2.0            -> tauri-build-v2.0
 * [new tag]             tauri-build-v2.0.0          -> tauri-build-v2.0.0
 * [new tag]             tauri-build-v2.0.0-alpha.0  -> tauri-build-v2.0.0-alpha.0
 * [new tag]             tauri-build-v2.0.0-alpha.1  -> tauri-build-v2.0.0-alpha.1
 * [new tag]             tauri-build-v2.0.0-alpha.10 -> tauri-build-v2.0.0-alpha.10
 * [new tag]             tauri-build-v2.0.0-alpha.11 -> tauri-build-v2.0.0-alpha.11
 * [new tag]             tauri-build-v2.0.0-alpha.12 -> tauri-build-v2.0.0-alpha.12
 * [new tag]             tauri-build-v2.0.0-alpha.13 -> tauri-build-v2.0.0-alpha.13
 * [new tag]             tauri-build-v2.0.0-alpha.14 -> tauri-build-v2.0.0-alpha.14
 * [new tag]             tauri-build-v2.0.0-alpha.2  -> tauri-build-v2.0.0-alpha.2
 * [new tag]             tauri-build-v2.0.0-alpha.3  -> tauri-build-v2.0.0-alpha.3
 * [new tag]             tauri-build-v2.0.0-alpha.4  -> tauri-build-v2.0.0-alpha.4
 * [new tag]             tauri-build-v2.0.0-alpha.5  -> tauri-build-v2.0.0-alpha.5
 * [new tag]             tauri-build-v2.0.0-alpha.6  -> tauri-build-v2.0.0-alpha.6
 * [new tag]             tauri-build-v2.0.0-alpha.7  -> tauri-build-v2.0.0-alpha.7
 * [new tag]             tauri-build-v2.0.0-alpha.8  -> tauri-build-v2.0.0-alpha.8
 * [new tag]             tauri-build-v2.0.0-alpha.9  -> tauri-build-v2.0.0-alpha.9
 * [new tag]             tauri-build-v2.0.0-beta.0   -> tauri-build-v2.0.0-beta.0
 * [new tag]             tauri-build-v2.0.0-beta.1   -> tauri-build-v2.0.0-beta.1
 * [new tag]             tauri-build-v2.0.0-beta.10  -> tauri-build-v2.0.0-beta.10
 * [new tag]             tauri-build-v2.0.0-beta.11  -> tauri-build-v2.0.0-beta.11
 * [new tag]             tauri-build-v2.0.0-beta.12  -> tauri-build-v2.0.0-beta.12
 * [new tag]             tauri-build-v2.0.0-beta.13  -> tauri-build-v2.0.0-beta.13
 * [new tag]             tauri-build-v2.0.0-beta.14  -> tauri-build-v2.0.0-beta.14
 * [new tag]             tauri-build-v2.0.0-beta.15  -> tauri-build-v2.0.0-beta.15
 * [new tag]             tauri-build-v2.0.0-beta.16  -> tauri-build-v2.0.0-beta.16
 * [new tag]             tauri-build-v2.0.0-beta.17  -> tauri-build-v2.0.0-beta.17
 * [new tag]             tauri-build-v2.0.0-beta.18  -> tauri-build-v2.0.0-beta.18
 * [new tag]             tauri-build-v2.0.0-beta.19  -> tauri-build-v2.0.0-beta.19
 * [new tag]             tauri-build-v2.0.0-beta.2   -> tauri-build-v2.0.0-beta.2
 * [new tag]             tauri-build-v2.0.0-beta.3   -> tauri-build-v2.0.0-beta.3
 * [new tag]             tauri-build-v2.0.0-beta.4   -> tauri-build-v2.0.0-beta.4
 * [new tag]             tauri-build-v2.0.0-beta.5   -> tauri-build-v2.0.0-beta.5
 * [new tag]             tauri-build-v2.0.0-beta.6   -> tauri-build-v2.0.0-beta.6
 * [new tag]             tauri-build-v2.0.0-beta.7   -> tauri-build-v2.0.0-beta.7
 * [new tag]             tauri-build-v2.0.0-beta.8   -> tauri-build-v2.0.0-beta.8
 * [new tag]             tauri-build-v2.0.0-beta.9   -> tauri-build-v2.0.0-beta.9
 * [new tag]             tauri-build-v2.0.0-rc.0     -> tauri-build-v2.0.0-rc.0
 * [new tag]             tauri-build-v2.0.0-rc.1     -> tauri-build-v2.0.0-rc.1
 * [new tag]             tauri-build-v2.0.0-rc.10    -> tauri-build-v2.0.0-rc.10
 * [new tag]             tauri-build-v2.0.0-rc.11    -> tauri-build-v2.0.0-rc.11
 * [new tag]             tauri-build-v2.0.0-rc.12    -> tauri-build-v2.0.0-rc.12
 * [new tag]             tauri-build-v2.0.0-rc.13    -> tauri-build-v2.0.0-rc.13
 * [new tag]             tauri-build-v2.0.0-rc.2     -> tauri-build-v2.0.0-rc.2
 * [new tag]             tauri-build-v2.0.0-rc.3     -> tauri-build-v2.0.0-rc.3
 * [new tag]             tauri-build-v2.0.0-rc.4     -> tauri-build-v2.0.0-rc.4
 * [new tag]             tauri-build-v2.0.0-rc.5     -> tauri-build-v2.0.0-rc.5
 * [new tag]             tauri-build-v2.0.0-rc.6     -> tauri-build-v2.0.0-rc.6
 * [new tag]             tauri-build-v2.0.0-rc.7     -> tauri-build-v2.0.0-rc.7
 * [new tag]             tauri-build-v2.0.0-rc.8     -> tauri-build-v2.0.0-rc.8
 * [new tag]             tauri-build-v2.0.0-rc.9     -> tauri-build-v2.0.0-rc.9
 * [new tag]             tauri-build-v2.0.1          -> tauri-build-v2.0.1
 * [new tag]             tauri-build-v2.0.2          -> tauri-build-v2.0.2
 * [new tag]             tauri-build-v2.0.3          -> tauri-build-v2.0.3
 * [new tag]             tauri-build-v2.0.4          -> tauri-build-v2.0.4
 * [new tag]             tauri-build-v2.0.5          -> tauri-build-v2.0.5
 * [new tag]             tauri-build-v2.0.6          -> tauri-build-v2.0.6
 * [new tag]             tauri-build-v2.1.0          -> tauri-build-v2.1.0
 * [new tag]             tauri-build-v2.1.1          -> tauri-build-v2.1.1
 * [new tag]             tauri-build-v2.2.0          -> tauri-build-v2.2.0
 * [new tag]             tauri-build-v2.3.0          -> tauri-build-v2.3.0
 * [new tag]             tauri-build-v2.3.1          -> tauri-build-v2.3.1
 * [new tag]             tauri-build-v2.4.0          -> tauri-build-v2.4.0
 * [new tag]             tauri-build-v2.4.1          -> tauri-build-v2.4.1
 * [new tag]             tauri-build-v2.5.0          -> tauri-build-v2.5.0
 * [new tag]             tauri-build-v2.5.1          -> tauri-build-v2.5.1
 * [new tag]             tauri-build-v2.5.2          -> tauri-build-v2.5.2
 * [new tag]             tauri-build-v2.5.3          -> tauri-build-v2.5.3
 * [new tag]             tauri-build-v2.5.4          -> tauri-build-v2.5.4
 * [new tag]             tauri-build-v2.5.5          -> tauri-build-v2.5.5
 * [new tag]             tauri-build-v2.5.6          -> tauri-build-v2.5.6
 * [new tag]             tauri-build-v2.6.0          -> tauri-build-v2.6.0
 * [new tag]             tauri-build-v2.6.1          -> tauri-build-v2.6.1
 * [new tag]             tauri-build-v2.6.2          -> tauri-build-v2.6.2
 * [new tag]             tauri-build-v2.6.3          -> tauri-build-v2.6.3
 * [new tag]             tauri-bundler-v0            -> tauri-bundler-v0
 * [new tag]             tauri-bundler-v0.4.0        -> tauri-bundler-v0.4.0
 * [new tag]             tauri-bundler-v0.4.1        -> tauri-bundler-v0.4.1
 * [new tag]             tauri-bundler-v0.4.2        -> tauri-bundler-v0.4.2
 * [new tag]             tauri-bundler-v0.4.3        -> tauri-bundler-v0.4.3
 * [new tag]             tauri-bundler-v0.4.4        -> tauri-bundler-v0.4.4
 * [new tag]             tauri-bundler-v0.5.0        -> tauri-bundler-v0.5.0
 * [new tag]             tauri-bundler-v0.6.0        -> tauri-bundler-v0.6.0
 * [new tag]             tauri-bundler-v0.6.1        -> tauri-bundler-v0.6.1
 * [new tag]             tauri-bundler-v0.7.0        -> tauri-bundler-v0.7.0
 * [new tag]             tauri-bundler-v0.8.0        -> tauri-bundler-v0.8.0
 * [new tag]             tauri-bundler-v0.8.1        -> tauri-bundler-v0.8.1
 * [new tag]             tauri-bundler-v0.8.2        -> tauri-bundler-v0.8.2
 * [new tag]             tauri-bundler-v0.8.3        -> tauri-bundler-v0.8.3
 * [new tag]             tauri-bundler-v0.8.4        -> tauri-bundler-v0.8.4
 * [new tag]             tauri-bundler-v0.8.5        -> tauri-bundler-v0.8.5
 * [new tag]             tauri-bundler-v0.9          -> tauri-bundler-v0.9
 * [new tag]             tauri-bundler-v0.9.0        -> tauri-bundler-v0.9.0
 * [new tag]             tauri-bundler-v0.9.1        -> tauri-bundler-v0.9.1
 * [new tag]             tauri-bundler-v0.9.3        -> tauri-bundler-v0.9.3
 * [new tag]             tauri-bundler-v0.9.4        -> tauri-bundler-v0.9.4
 * [new tag]             tauri-bundler-v1            -> tauri-bundler-v1
 * [new tag]             tauri-bundler-v1.0          -> tauri-bundler-v1.0
 * [new tag]             tauri-bundler-v1.0.0        -> tauri-bundler-v1.0.0
 * [new tag]             tauri-bundler-v1.0.0-beta-rc.0 -> tauri-bundler-v1.0.0-beta-rc.0
 * [new tag]             tauri-bundler-v1.0.0-beta-rc.1 -> tauri-bundler-v1.0.0-beta-rc.1
 * [new tag]             tauri-bundler-v1.0.0-beta.0 -> tauri-bundler-v1.0.0-beta.0
 * [new tag]             tauri-bundler-v1.0.0-beta.1 -> tauri-bundler-v1.0.0-beta.1
 * [new tag]             tauri-bundler-v1.0.0-beta.2 -> tauri-bundler-v1.0.0-beta.2
 * [new tag]             tauri-bundler-v1.0.0-beta.3 -> tauri-bundler-v1.0.0-beta.3
 * [new tag]             tauri-bundler-v1.0.0-beta.4 -> tauri-bundler-v1.0.0-beta.4
 * [new tag]             tauri-bundler-v1.0.0-rc.0   -> tauri-bundler-v1.0.0-rc.0
 * [new tag]             tauri-bundler-v1.0.0-rc.1   -> tauri-bundler-v1.0.0-rc.1
 * [new tag]             tauri-bundler-v1.0.0-rc.10  -> tauri-bundler-v1.0.0-rc.10
 * [new tag]             tauri-bundler-v1.0.0-rc.2   -> tauri-bundler-v1.0.0-rc.2
 * [new tag]             tauri-bundler-v1.0.0-rc.3   -> tauri-bundler-v1.0.0-rc.3
 * [new tag]             tauri-bundler-v1.0.0-rc.4   -> tauri-bundler-v1.0.0-rc.4
 * [new tag]             tauri-bundler-v1.0.0-rc.5   -> tauri-bundler-v1.0.0-rc.5
 * [new tag]             tauri-bundler-v1.0.0-rc.6   -> tauri-bundler-v1.0.0-rc.6
 * [new tag]             tauri-bundler-v1.0.0-rc.7   -> tauri-bundler-v1.0.0-rc.7
 * [new tag]             tauri-bundler-v1.0.0-rc.8   -> tauri-bundler-v1.0.0-rc.8
 * [new tag]             tauri-bundler-v1.0.0-rc.9   -> tauri-bundler-v1.0.0-rc.9
 * [new tag]             tauri-bundler-v1.0.1        -> tauri-bundler-v1.0.1
 * [new tag]             tauri-bundler-v1.0.2        -> tauri-bundler-v1.0.2
 * [new tag]             tauri-bundler-v1.0.3        -> tauri-bundler-v1.0.3
 * [new tag]             tauri-bundler-v1.0.4        -> tauri-bundler-v1.0.4
 * [new tag]             tauri-bundler-v1.0.5        -> tauri-bundler-v1.0.5
 * [new tag]             tauri-bundler-v1.0.6        -> tauri-bundler-v1.0.6
 * [new tag]             tauri-bundler-v1.0.7        -> tauri-bundler-v1.0.7
 * [new tag]             tauri-bundler-v1.1          -> tauri-bundler-v1.1
 * [new tag]             tauri-bundler-v1.1.0        -> tauri-bundler-v1.1.0
 * [new tag]             tauri-bundler-v1.1.1        -> tauri-bundler-v1.1.1
 * [new tag]             tauri-bundler-v1.1.2        -> tauri-bundler-v1.1.2
 * [new tag]             tauri-bundler-v1.2          -> tauri-bundler-v1.2
 * [new tag]             tauri-bundler-v1.2.0        -> tauri-bundler-v1.2.0
 * [new tag]             tauri-bundler-v1.2.1        -> tauri-bundler-v1.2.1
 * [new tag]             tauri-bundler-v1.3          -> tauri-bundler-v1.3
 * [new tag]             tauri-bundler-v1.3.0        -> tauri-bundler-v1.3.0
 * [new tag]             tauri-bundler-v1.4          -> tauri-bundler-v1.4
 * [new tag]             tauri-bundler-v1.4.0        -> tauri-bundler-v1.4.0
 * [new tag]             tauri-bundler-v1.4.1        -> tauri-bundler-v1.4.1
 * [new tag]             tauri-bundler-v1.4.2        -> tauri-bundler-v1.4.2
 * [new tag]             tauri-bundler-v1.4.3        -> tauri-bundler-v1.4.3
 * [new tag]             tauri-bundler-v1.4.4        -> tauri-bundler-v1.4.4
 * [new tag]             tauri-bundler-v1.4.5        -> tauri-bundler-v1.4.5
 * [new tag]             tauri-bundler-v1.4.6        -> tauri-bundler-v1.4.6
 * [new tag]             tauri-bundler-v1.4.7        -> tauri-bundler-v1.4.7
 * [new tag]             tauri-bundler-v1.4.8        -> tauri-bundler-v1.4.8
 * [new tag]             tauri-bundler-v1.5.0        -> tauri-bundler-v1.5.0
 * [new tag]             tauri-bundler-v1.5.1        -> tauri-bundler-v1.5.1
 * [new tag]             tauri-bundler-v1.5.2        -> tauri-bundler-v1.5.2
 * [new tag]             tauri-bundler-v1.5.3        -> tauri-bundler-v1.5.3
 * [new tag]             tauri-bundler-v1.5.4        -> tauri-bundler-v1.5.4
 * [new tag]             tauri-bundler-v1.6          -> tauri-bundler-v1.6
 * [new tag]             tauri-bundler-v1.6.0        -> tauri-bundler-v1.6.0
 * [new tag]             tauri-bundler-v1.6.1        -> tauri-bundler-v1.6.1
 * [new tag]             tauri-bundler-v1.7          -> tauri-bundler-v1.7
 * [new tag]             tauri-bundler-v1.7.0        -> tauri-bundler-v1.7.0
 * [new tag]             tauri-bundler-v1.7.1        -> tauri-bundler-v1.7.1
 * [new tag]             tauri-bundler-v1.7.2        -> tauri-bundler-v1.7.2
 * [new tag]             tauri-bundler-v1.7.3        -> tauri-bundler-v1.7.3
 * [new tag]             tauri-bundler-v1.7.4        -> tauri-bundler-v1.7.4
 * [new tag]             tauri-bundler-v2            -> tauri-bundler-v2
 * [new tag]             tauri-bundler-v2.0          -> tauri-bundler-v2.0
 * [new tag]             tauri-bundler-v2.0.0        -> tauri-bundler-v2.0.0
 * [new tag]             tauri-bundler-v2.0.0-alpha.0 -> tauri-bundler-v2.0.0-alpha.0
 * [new tag]             tauri-bundler-v2.0.0-alpha.1 -> tauri-bundler-v2.0.0-alpha.1
 * [new tag]             tauri-bundler-v2.0.0-alpha.10 -> tauri-bundler-v2.0.0-alpha.10
 * [new tag]             tauri-bundler-v2.0.0-alpha.11 -> tauri-bundler-v2.0.0-alpha.11
 * [new tag]             tauri-bundler-v2.0.0-alpha.12 -> tauri-bundler-v2.0.0-alpha.12
 * [new tag]             tauri-bundler-v2.0.0-alpha.13 -> tauri-bundler-v2.0.0-alpha.13
 * [new tag]             tauri-bundler-v2.0.0-alpha.14 -> tauri-bundler-v2.0.0-alpha.14
 * [new tag]             tauri-bundler-v2.0.0-alpha.2 -> tauri-bundler-v2.0.0-alpha.2
 * [new tag]             tauri-bundler-v2.0.0-alpha.3 -> tauri-bundler-v2.0.0-alpha.3
 * [new tag]             tauri-bundler-v2.0.0-alpha.4 -> tauri-bundler-v2.0.0-alpha.4
 * [new tag]             tauri-bundler-v2.0.0-alpha.5 -> tauri-bundler-v2.0.0-alpha.5
 * [new tag]             tauri-bundler-v2.0.0-alpha.6 -> tauri-bundler-v2.0.0-alpha.6
 * [new tag]             tauri-bundler-v2.0.0-alpha.7 -> tauri-bundler-v2.0.0-alpha.7
 * [new tag]             tauri-bundler-v2.0.0-alpha.8 -> tauri-bundler-v2.0.0-alpha.8
 * [new tag]             tauri-bundler-v2.0.0-alpha.9 -> tauri-bundler-v2.0.0-alpha.9
 * [new tag]             tauri-bundler-v2.0.0-beta.0 -> tauri-bundler-v2.0.0-beta.0
 * [new tag]             tauri-bundler-v2.0.0-beta.1 -> tauri-bundler-v2.0.0-beta.1
 * [new tag]             tauri-bundler-v2.0.0-beta.2 -> tauri-bundler-v2.0.0-beta.2
 * [new tag]             tauri-bundler-v2.0.0-beta.3 -> tauri-bundler-v2.0.0-beta.3
 * [new tag]             tauri-bundler-v2.0.0-rc.0   -> tauri-bundler-v2.0.0-rc.0
 * [new tag]             tauri-bundler-v2.0.1        -> tauri-bundler-v2.0.1
 * [new tag]             tauri-bundler-v2.0.1-beta.0 -> tauri-bundler-v2.0.1-beta.0
 * [new tag]             tauri-bundler-v2.0.1-beta.1 -> tauri-bundler-v2.0.1-beta.1
 * [new tag]             tauri-bundler-v2.0.1-beta.10 -> tauri-bundler-v2.0.1-beta.10
 * [new tag]             tauri-bundler-v2.0.1-beta.11 -> tauri-bundler-v2.0.1-beta.11
 * [new tag]             tauri-bundler-v2.0.1-beta.12 -> tauri-bundler-v2.0.1-beta.12
 * [new tag]             tauri-bundler-v2.0.1-beta.13 -> tauri-bundler-v2.0.1-beta.13
 * [new tag]             tauri-bundler-v2.0.1-beta.14 -> tauri-bundler-v2.0.1-beta.14
 * [new tag]             tauri-bundler-v2.0.1-beta.15 -> tauri-bundler-v2.0.1-beta.15
 * [new tag]             tauri-bundler-v2.0.1-beta.16 -> tauri-bundler-v2.0.1-beta.16
 * [new tag]             tauri-bundler-v2.0.1-beta.17 -> tauri-bundler-v2.0.1-beta.17
 * [new tag]             tauri-bundler-v2.0.1-beta.18 -> tauri-bundler-v2.0.1-beta.18
 * [new tag]             tauri-bundler-v2.0.1-beta.19 -> tauri-bundler-v2.0.1-beta.19
 * [new tag]             tauri-bundler-v2.0.1-beta.2 -> tauri-bundler-v2.0.1-beta.2
 * [new tag]             tauri-bundler-v2.0.1-beta.3 -> tauri-bundler-v2.0.1-beta.3
 * [new tag]             tauri-bundler-v2.0.1-beta.4 -> tauri-bundler-v2.0.1-beta.4
 * [new tag]             tauri-bundler-v2.0.1-beta.5 -> tauri-bundler-v2.0.1-beta.5
 * [new tag]             tauri-bundler-v2.0.1-beta.6 -> tauri-bundler-v2.0.1-beta.6
 * [new tag]             tauri-bundler-v2.0.1-beta.7 -> tauri-bundler-v2.0.1-beta.7
 * [new tag]             tauri-bundler-v2.0.1-beta.8 -> tauri-bundler-v2.0.1-beta.8
 * [new tag]             tauri-bundler-v2.0.1-beta.9 -> tauri-bundler-v2.0.1-beta.9
 * [new tag]             tauri-bundler-v2.0.1-rc.0   -> tauri-bundler-v2.0.1-rc.0
 * [new tag]             tauri-bundler-v2.0.1-rc.1   -> tauri-bundler-v2.0.1-rc.1
 * [new tag]             tauri-bundler-v2.0.1-rc.10  -> tauri-bundler-v2.0.1-rc.10
 * [new tag]             tauri-bundler-v2.0.1-rc.11  -> tauri-bundler-v2.0.1-rc.11
 * [new tag]             tauri-bundler-v2.0.1-rc.12  -> tauri-bundler-v2.0.1-rc.12
 * [new tag]             tauri-bundler-v2.0.1-rc.13  -> tauri-bundler-v2.0.1-rc.13
 * [new tag]             tauri-bundler-v2.0.1-rc.14  -> tauri-bundler-v2.0.1-rc.14
 * [new tag]             tauri-bundler-v2.0.1-rc.15  -> tauri-bundler-v2.0.1-rc.15
 * [new tag]             tauri-bundler-v2.0.1-rc.2   -> tauri-bundler-v2.0.1-rc.2
 * [new tag]             tauri-bundler-v2.0.1-rc.3   -> tauri-bundler-v2.0.1-rc.3
 * [new tag]             tauri-bundler-v2.0.1-rc.4   -> tauri-bundler-v2.0.1-rc.4
 * [new tag]             tauri-bundler-v2.0.1-rc.5   -> tauri-bundler-v2.0.1-rc.5
 * [new tag]             tauri-bundler-v2.0.1-rc.6   -> tauri-bundler-v2.0.1-rc.6
 * [new tag]             tauri-bundler-v2.0.1-rc.7   -> tauri-bundler-v2.0.1-rc.7
 * [new tag]             tauri-bundler-v2.0.1-rc.8   -> tauri-bundler-v2.0.1-rc.8
 * [new tag]             tauri-bundler-v2.0.1-rc.9   -> tauri-bundler-v2.0.1-rc.9
 * [new tag]             tauri-bundler-v2.0.2        -> tauri-bundler-v2.0.2
 * [new tag]             tauri-bundler-v2.0.3        -> tauri-bundler-v2.0.3
 * [new tag]             tauri-bundler-v2.0.4        -> tauri-bundler-v2.0.4
 * [new tag]             tauri-bundler-v2.1.0        -> tauri-bundler-v2.1.0
 * [new tag]             tauri-bundler-v2.2.0        -> tauri-bundler-v2.2.0
 * [new tag]             tauri-bundler-v2.2.1        -> tauri-bundler-v2.2.1
 * [new tag]             tauri-bundler-v2.2.2        -> tauri-bundler-v2.2.2
 * [new tag]             tauri-bundler-v2.2.3        -> tauri-bundler-v2.2.3
 * [new tag]             tauri-bundler-v2.2.4        -> tauri-bundler-v2.2.4


> ✂ **Note**
> 
> PR body was truncated to here.

@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch from 7e0296f to 649fe0c Compare March 18, 2026 05:09
@github-actions github-actions Bot changed the title chore(deps): update rust dependencies fix(deps): update rust dependencies Mar 18, 2026
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 6 times, most recently from fe5e426 to 7200cf3 Compare March 26, 2026 05:19
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 8 times, most recently from 717be41 to eddd1a9 Compare April 3, 2026 05:18
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 5 times, most recently from c1d6f08 to f8ee4de Compare April 10, 2026 05:36
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 4 times, most recently from 68d0655 to 4ea7adc Compare April 17, 2026 05:39
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 3 times, most recently from 884210c to 5b1f645 Compare April 25, 2026 05:25
@github-actions

github-actions Bot commented May 8, 2026

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 3 times, most recently from 494b4b2 to 9cde705 Compare May 15, 2026 06:45
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 6 times, most recently from f209c2c to 32d34cc Compare May 22, 2026 06:59
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 3 times, most recently from c98b73d to 688981f Compare May 29, 2026 07:06
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 3 times, most recently from 492b2bf to 9d120e4 Compare June 19, 2026 08:43
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 4 times, most recently from 1c01127 to 55db46c Compare July 7, 2026 06:58
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 6 times, most recently from 24c76bb to 1f4034c Compare July 19, 2026 06:10
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch 2 times, most recently from d50227b to a493a0b Compare July 21, 2026 06:08
@github-actions
github-actions Bot force-pushed the renovate/rust-dependencies branch from a493a0b to 2b79444 Compare July 22, 2026 06:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants