Skip to content

fix(deps): update cargo dependencies - #4

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cargo-dependencies
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cargo-dependencies

Conversation

@renovate

@renovate renovate Bot commented Mar 14, 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
chrono dependencies patch 0.4.440.4.45
crossbeam dependencies patch 0.8.40.8.5
libc dependencies patch 0.2.1820.2.189
log dependencies patch 0.4.290.4.34
packet_parser dependencies minor 1.1.01.6.0
pcap dependencies minor 2.4.02.5.0
rayon dependencies minor 1.11.01.12.0
reqwest dependencies patch 0.13.20.13.5
serde (source) dependencies patch 1.0.2281.0.229
serde_json dependencies patch 1.0.1491.0.151
sysinfo dependencies minor 0.38.30.39.0
tauri (source) dependencies minor 2.10.32.11.5
tauri-build (source) build-dependencies minor 2.5.62.6.3
tauri-plugin-dialog dependencies minor 2.6.02.7.3
tauri-plugin-fs dependencies minor 2.4.52.5.2
tauri-plugin-global-shortcut dependencies patch 2.3.12.3.2
tauri-plugin-log build-dependencies minor 2.8.02.9.1
tauri-plugin-log dependencies minor 2.8.02.9.1
tauri-plugin-shell dependencies patch 2.3.52.3.6
thiserror dependencies patch 2.0.182.0.20
tokio (source) dependencies minor 1.50.01.53.1
windows-sys dependencies minor 0.590.61

Release Notes

chronotope/chrono (chrono)

v0.4.45: 0.4.45

Compare Source

What's Changed

crossbeam-rs/crossbeam (crossbeam)

v0.8.5

Compare Source

  • Update MSRV policy to support 1 year instead of 6 months to meet rayon's MSRV policy. (#​1284)
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)

v0.2.183

Compare Source

Added
  • ESP-IDF: Add SOMAXCONN (#​4993)
  • Linux: Add name_to_handle_at and open_by_handle_at (#​4988)
  • NetBSD: Add kinfo_file, kinfo_pcb, and related constants (#​4985)
  • OpenBSD: Add kinfo_file and related constants (#​4991)
  • VxWorks: Add additional structs and defines (#​5003)
  • Various: Implement Default for timeval and timespec (#​4976)
Fixed
  • Hexagon musl: Enable unstable 64-bit time_t support and musl_v1_2_3 (#​4992)
  • Nintendo Switch: Fix target support (#​4982)
  • OpenBSD: Wrap an unused field in Padding (#​4997)
  • Redox: Change sigaction.sa_flags to c_int (#​4986)
  • Redox: Fix blkcnt_t type (#​4994)
rust-lang/log (log)

v0.4.34

Compare Source

v0.4.33

Compare Source

v0.4.32

Compare Source

What's Changed
  • Support Value -> string conversions with kv + std features instead of kv_std by @​tisonkun in #​729

Full Changelog: rust-lang/log@0.4.31...0.4.32

v0.4.31

Compare Source

What's Changed
  • Support Value -> string conversions with kv + std features instead of kv_std by @​tisonkun in #​729

Full Changelog: rust-lang/log@0.4.31...0.4.32

v0.4.30

Compare Source

What's Changed
New Contributors

Full Changelog: rust-lang/log@0.4.30...0.4.31

Akmot9/Packet-parser (packet_parser)

v1.5.5

Change
  • Detection PostgreSQL basee sur la structure du payload TCP au lieu du port 5432.
  • Alignement du parseur PostgreSQL sur les formats de messages frontend/backend pour les StartupMessage 3.0/3.2 et les CancelRequest a cle secrete variable.
Corrige
  • Reduction des faux positifs PostgreSQL en exigeant une signature applicative forte avant de labelliser le payload.
Validation
  • cargo test passe avec 297 tests unitaires et 13 doctests.

v1.5.4

Ajoute
  • Ajout du parsing PostgreSQL, detecte sur le port standard et expose via les couches application, erreurs et validations dediees.
Change
  • Le pipeline benchmark/ingestion/dashboard identifie maintenant le code de la crate avec une empreinte BLAKE3 de src/ (crate_code) au lieu d'un numero de version hardcode.
  • Les fichiers JSONL de benchmark incluent crate_code et sont nommes par PCAP, code de crate et run_id, pour que l'ingestor voie immediatement chaque nouveau run.
Validation
  • cargo test passe avec 283 tests unitaires et 13 doctests.

v1.5.3

Corrige
  • ParseTiming.total_ns est maintenant renseigne pour toute tentative de parsing, y compris quand le parsing echoue en L2, L3 ou L4.
  • Les paquets IPv4 fragmentes ne declenchent plus de tentative de parsing L4; la couche internet est conservee avec payload_protocol: None.
  • Le parsing L4 sur fragment IPv4 necessite un reassemblage IP, non fourni par la crate.
Validation
  • cargo test passe avec 278 tests unitaires et 13 doctests.
  • cargo test --features parse_timing passe avec 286 tests unitaires et 13 doctests.

v1.5.2

Corrige
  • ParseTiming.total_ns mesure maintenant toute tentative de parsing, y compris quand le parsing echoue en L2, L3 ou L4.
  • Les fragments IPv4 non initiaux ne sont plus interpretes comme des paquets de transport complets; la couche internet est conservee avec payload_protocol: None.
Validation
  • cargo test passe avec 274 tests unitaires et 13 doctests.
  • cargo test --features parse_timing passe avec 282 tests unitaires et 13 doctests.

v1.5.1

Corrige
  • Renommage des champs protocol aplatis dans PacketFlowOwned pour eviter les collisions JSON entre les couches internet, transport et application.

v1.5.0

Ajoute
  • Ajout du parsing EtherNet/IP encapsulation, detecte sans dependance au port.
Validation
  • cargo fmt --check passe.
  • cargo test passe avec 271 tests unitaires et 13 doctests.

v1.4.0

Ajoute
  • Ajout de METHODE_AJOUT_PROTOCOLE.md, qui documente la methode de travail pour ajouter un nouveau protocole.
  • Ajout d'une strategie zero-copy pour les nouveaux parseurs : payloads et champs variables en references, pas de copies inutiles dans le chemin de parsing.
  • Ajout d'une exigence de rustdoc avec schema Mermaid packet-beta pour le type principal de chaque nouveau protocole.
  • Ajout d'erreurs applicatives dediees pour HTTP, DHCP, COTP et S7Comm.
  • Ajout de modules src/checks/application/* et src/checks/internet/profinet.rs pour centraliser les validations des parseurs.
  • Ajout de modules d'erreurs dedies pour AMS, GIOP, Modbus/TCP, OPC UA, SRVLOC, TLS et Profinet.
  • Ajout de checks dedies pour ARP, IPv4, IPv6, UDP, DHCPv6, QUIC, DNS, Bitcoin, MQTT, Modbus/TCP et SRVLOC.
  • Ajout du parsing SNMP v1/v2c/v3 avec detection UDP 161/162, PDU standards et varbinds.
Change
  • Alignement des parseurs HTTP, DHCP, COTP et S7Comm vers une interface TryFrom<&[u8]>.
  • Remplacement des erreurs de parsing non typees (bool, &'static str) par des erreurs dediees.
  • Conservation des fonctions helper existantes quand elles restent utiles, mais avec des types d'erreur explicites.
  • Correction d'un commentaire Bitcoin obsolete qui mentionnait encore un retour bool.
  • Deplacement des validations nommees check_*, validate_* et ensure_* hors de src/parse.
  • Deplacement des enums d'erreur restantes hors des fichiers de parsing vers src/errors.
  • Mise a jour des parseurs AMS, Bitcoin, COTP, DHCP, DNS, GIOP, HTTP, Modbus/TCP, MQTT, OPC UA, S7Comm, SRVLOC, TLS et Profinet pour utiliser les modules checks et errors.
  • Migration des validations inline prioritaires hors des parseurs Data Link, Internet, Transport, DNS, DHCPv6, QUIC, Bitcoin, MQTT, Modbus/TCP et SRVLOC.
  • Deplacement de la validation dns_flags depuis le module de parsing DNS vers src/checks/application/dns.rs.
Validation
  • cargo fmt passe.
  • cargo test passe avec 264 tests unitaires et 13 doctests.
rust-pcap/pcap (pcap)

v2.5.0

Compare Source

Added
  • Binding for pcap_dispatch added. It can be accessed via the dispatch call on Activated
    captures and processes a batch of packets per call, making packet loss less likely in high
    traffic situations.
rayon-rs/rayon (rayon)

v1.12.0

Compare Source

  • Fixed a bug in parallel Range<char> when the end is 0xE000, just past the
    surrogate boundary, which was unsafely producing invalid char values.
  • The new method ParallelSlice::par_array_windows works like par_windows
    but with a constant length, producing &[T; N] items.
seanmonstar/reqwest (reqwest)

v0.13.5

Compare Source

  • Add Error::is_dns() to identify errors caused by DNS resolution failures.
  • Add ClientBuilder::http1_max_headers(usize) to configure the maximum number of headers accepted in an HTTP/1 response (default 100).
  • Add TLS version to TlsInfo extension.
  • Fix hickory-dns feature to use Ipv6AndIpv4 strategy to prefer IPv6.
  • Fix sending wrong proxy-auth if multiple proxies intercept a given URL.

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

GuillaumeGomez/sysinfo (sysinfo)

v0.39.6

Compare Source

  • NetBSD: Add support for disk I/O usage.
  • NetBSD: Improve retrieval of disk information.

v0.39.5

Compare Source

  • macOS: Fix build for apple app store

v0.39.4

Compare Source

  • Unix: Fix soundness issue when retrieving user's groups.
  • macOS: Add new macOS version name.
  • macOS: Fix inaccurate open_files returned value.

v0.39.3

Compare Source

  • Unix: Fix retrieval of Network::mac_addr.
  • Linux: Improve retrieval of process information if process terminates while doing so.

v0.39.2

Compare Source

  • Windows: Greatly improve performance of System::refresh_cpu_specifics when CPU usage is not requested.
  • iOS: Fix compilation error when user feature is enabled.
  • Linux: Correctly set thread information for processes.

v0.39.1

Compare Source

  • Linux: Fix wrong network numbers computation.

v0.39.0

Compare Source

  • Update minimum supported rust version to 1.95.
  • Add new NetworkData::operational_state API.
  • Add new Process::cgroup_limits API (only returning data on Linux).
  • All supported systems other than Windows: Improve performance of Networks::refresh*.
  • All supported systems other than Windows: Fix soundness issue when retrieving users.
  • Linux: Take into account parent cgroup memory limits.
  • Linux: Fix panic when retrieving process information on ESXi.
  • FreeBSD: Use the name of dataset as name for zfs disks.

v0.38.4

Compare Source

  • macOS: Unpin objc2-* crates version.
  • Linux: Fix computation of disk size.
tauri-apps/tauri (tauri)

v2.11.5: tauri v2.11.5

Compare Source

Cargo Audit

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 1146 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (1085 crate dependencies)
Crate:     atk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0413
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0413

Crate:     atk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0416
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0416

Crate:     fxhash
Version:   0.2.1
Warning:   unmaintained
Title:     fxhash - no longer maintained
Date:      2025-09-05
ID:        RUSTSEC-2025-0057
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0057

Crate:     gdk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0412
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0412

Crate:     gdk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0418
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0418

Crate:     gdkwayland-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0411
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0411

Crate:     gdkx11
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0417
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0417

Crate:     gdkx11-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0414
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0414

Crate:     gtk
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0415
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0415

Crate:     gtk-sys
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0420
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0420

Crate:     gtk3-macros
Version:   0.18.2
Warning:   unmaintained
Title:     gtk-rs GTK3 bindings - no longer maintained
Date:      2024-03-04
ID:        RUSTSEC-2024-0419
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0419

Crate:     paste
Version:   1.0.15
Warning:   unmaintained
Title:     paste - no longer maintained
Date:      2024-10-07
ID:        RUSTSEC-2024-0436
URL:       https://rustsec.org/advisories/RUSTSEC-2024-0436

Crate:     rustls-pemfile
Version:   1.0.4
Warning:   unmaintained
Title:     rustls-pemfile is unmaintained
Date:      2025-11-28
ID:        RUSTSEC-2025-0134
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0134

Crate:     rustls-pemfile
Version:   2.2.0
Warning:   unmaintained
Title:     rustls-pemfile is unmaintained
Date:      2025-11-28
ID:        RUSTSEC-2025-0134
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0134

Crate:     ttf-parser
Version:   0.25.1
Warning:   unmaintained
Title:     `ttf-parser` is unmaintained
Date:      2026-06-28
ID:        RUSTSEC-2026-0192
URL:       https://rustsec.org/advisories/RUSTSEC-2026-0192

Crate:     unic-char-property
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-char-property` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0081
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0081

Crate:     unic-char-range
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-char-range` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0075
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0075

Crate:     unic-common
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-common` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0080
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0080

Crate:     unic-ucd-ident
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-ucd-ident` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0100
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0100

Crate:     unic-ucd-version
Version:   0.9.0
Warning:   unmaintained
Title:     `unic-ucd-version` is unmaintained
Date:      2025-10-18
ID:        RUSTSEC-2025-0098
URL:       https://rustsec.org/advisories/RUSTSEC-2025-0098

Crate:     anyhow
Version:   1.0.95
Warning:   unsound
Title:     Unsoundness in `Error::downcast_mut()`
Date:      2026-06-25
ID:        RUSTSEC-2026-0190
URL:       https://rustsec.org/advisories/RUSTSEC-2026-0190

warning: 21 allowed warnings found

[2.11.5]

Dependencies

Cargo Publish

Updating crates.io index
    Updating git repository `https://github.com/tauri-apps/schemars.git`
   Packaging tauri v2.11.5 (/home/runner/work/tauri/tauri/crates/tauri)
warning: ignoring example `commands` as `../../examples/commands/main.rs` is not included in the published package
warning: ignoring example `drag` as `../../examples/drag/main.rs` is not included in the published package
warning: ignoring example `helloworld` as `../../examples/helloworld/main.rs` is not included in the published package
warning: ignoring example `isolation` as `../../examples/isolation/main.rs` is not included in the published package
warning: ignoring example `multiwebview` as `../../examples/multiwebview/main.rs` is not included in the published package
warning: ignoring example `multiwindow` as `../../examples/multiwindow/main.rs` is not included in the published package
warning: ignoring example `run-return` as `../../examples/run-return/main.rs` is not included in the published package
warning: ignoring example `splashscreen` as `../../examples/splashscreen/main.rs` is not included in the published package
warning: ignoring example `state` as `../../examples/state/main.rs` is not included in the published package
warning: ignoring example `streaming` as `../../examples/streaming/main.rs` is not included in the published package
    Updating crates.io index
    Packaged 142 files, 1.3MiB (290.9KiB compressed)
   Verifying tauri v2.11.5 (/home/runner/work/tauri/tauri/crates/tauri)
 Downloading crates ...
  Downloaded alloc-no-stdlib v2.0.4
  Downloaded anyhow v1.0.95
  Downloaded adler2 v2.0.0
  Downloaded alloc-stdlib v0.2.2
  Downloaded dyn-clone v1.0.17
  Downloaded field-offset v0.3.6
  Downloaded icu_provider_macros v1.5.0
  Downloaded fastrand v2.3.0
  Downloaded dlopen2_derive v0.4.0
  Downloaded dirs v6.0.0
  Downloaded aho-corasick v1.1.3
  Downloaded icu_provider v1.5.0
  Downloaded heck v0.4.1
  Downloaded embed-resource v3.0.5
  Downloaded displaydoc v0.2.5
  Downloaded cfg-if v1.0.1
  Downloaded idna v1.0.3
  Downloaded icu_normalizer_data v1.5.0
  Downloaded futures-core v0.3.31
  Downloaded futures-task v0.3.31
  Downloaded darling_macro v0.20.10
  Downloaded cpufeatures v0.2.16
  Downloaded cssparser-macros v0.6.1
  Downloaded cargo-platform v0.1.8
  Downloaded dtor v0.3.0
  Downloaded cairo-sys-rs v0.18.2
  Downloaded ctor v0.8.0
  Downloaded gdkx11-sys v0.18.2
  Downloaded schemars_derive v0.8.21
  Downloaded icu_properties_data v1.5.0
  Downloaded simd-adler32 v0.3.7
  Downloaded javascriptcore-rs-sys v1.1.1
  Downloaded gdkx11 v0.18.2
  Downloaded form_urlencoded v1.2.1
  Downloaded dirs-sys v0.5.0
  Downloaded glob v0.3.2
  Downloaded gdk-pixbuf-sys v0.18.0
  Downloaded cargo_toml v0.22.3
  Downloaded serde_repr v0.1.19
  Downloaded stable_deref_trait v1.2.0
  Downloaded gdk-pixbuf v0.18.5
  Downloaded atk-sys v0.18.2
  Downloaded cargo_metadata v0.19.0
  Downloaded autocfg v1.4.0
  Downloaded serde_spanned v1.0.4
  Downloaded markup5ever v0.38.0
  Downloaded toml_datetime v0.6.8
  Downloaded getrandom v0.2.15
  Downloaded tokio-macros v2.5.0
  Downloaded time-core v0.1.2
  Downloaded tauri-winres v0.3.2
  Downloaded serde-untagged v0.1.6
  Downloaded memoffset v0.9.1
  Downloaded thiserror-impl v1.0.69
  Downloaded bitflags v2.7.0
  Downloaded utf16_iter v1.0.5
  Downloaded unic-ucd-version v0.9.0
  Downloaded tauri-runtime v2.11.3
  Downloaded getrandom v0.3.3
  Downloaded unic-ucd-ident v0.9.0
  Downloaded unic-common v0.9.0
  Downloaded system-deps v6.2.2
  Downloaded semver v1.0.24
  Downloaded write16 v1.0.0
  Downloaded tray-icon v0.24.0
  Downloaded icu_collections v1.5.0
  Downloaded yoke v0.7.5
  Downloaded serde_derive_internals v0.29.1
  Downloaded x11-dl v2.21.0
  Downloaded zerofrom-derive v0.1.5
  Downloaded tauri-utils v2.9.3
  Downloaded unicode-segmentation v1.12.0
  Downloaded zerovec-derive v0.10.3
  Downloaded libappindicator v0.9.0
  Downloaded winnow v0.7.14
  Downloaded memchr v2.7.4
  Downloaded webkit2gtk v2.0.2
  Downloaded toml_edit v0.20.7
  Downloaded png v0.17.16
  Downloaded serde_with v3.12.0
  Downloaded serde_json v1.0.145
  Downloaded zerovec v0.10.4
  Downloaded winnow v0.5.40
  Downloaded syn v1.0.109
  Downloaded wry v0.55.0
  Downloaded regex v1.11.1
  Downloaded quick-xml v0.32.0
  Downloaded gtk v0.18.2
  Downloaded tao v0.35.0
  Downloaded regex-syntax v0.8.5
  Downloaded syn v2.0.117
  Downloaded png v0.18.1
  Downloaded indexmap v2.11.4
  Downloaded toml_edit v0.19.15
  Downloaded plist v1.7.0
  Downloaded muda v0.19.1
  Downloaded mio v1.0.3
  Downloaded glib v0.18.5
  Downloaded selectors v0.36.1
  Downloaded miniz_oxide v0.8.8
  Downloaded chrono v0.4.41
  Downloaded infer v0.19.0
  Downloaded brotli v8.0.0
  Downloaded indexmap v1.9.3
  Downloaded tokio v1.45.1
  Downloaded web_atoms v0.2.3
  Downloaded regex-automata v0.4.9
  Downloaded socket2 v0.5.8
  Downloaded ryu v1.0.18
  Downloaded num-traits v0.2.19
  Downloaded log v0.4.29
  Downloaded gio v0.18.4
  Downloaded brotli-decompressor v5.0.0
  Downloaded schemars v0.8.21
  Downloaded libc v0.2.178
  Downloaded zerofrom v0.1.5
  Downloaded yoke-derive v0.7.5
  Downloaded typenum v1.20.0
  Downloaded toml_edit v0.22.24
  Downloaded time v0.3.37
  Downloaded gtk-sys v0.18.2
  Downloaded futures-util v0.3.31
  Downloaded x11 v2.21.0
  Downloaded webkit2gtk-sys v2.0.2
  Downloaded uuid v1.11.0
  Downloaded url v2.5.4
  Downloaded http v1.3.1
  Downloaded dbus v0.9.10
  Downloaded libdbus-sys v0.2.7
  Downloaded pango v0.18.3
  Downloaded javascriptcore-rs v1.1.2
  Downloaded hashbrown v0.12.3
  Downloaded writeable v0.5.5
  Downloaded unicode-ident v1.0.14
  Downloaded tauri-macros v2.6.3
  Downloaded tauri-codegen v2.6.3
  Downloaded tauri-build v2.6.3
  Downloaded soup3 v0.5.0
  Downloaded smallvec v1.13.2
  Downloaded serde_with_macros v3.12.0
  Downloaded parking_lot v0.12.3
  Downloaded keyboard-types v0.7.0
  Downloaded jsonptr v0.6.3
  Downloaded json-patch v3.0.1
  Downloaded gdk v0.18.2
  Downloaded dom_query v0.27.0
  Downloaded cc v1.2.51
  Downloaded version-compare v0.2.0
  Downloaded urlpattern v0.3.0
  Downloaded toml_parser v1.0.9+spec-1.1.0
  Downloaded toml v0.8.20
  Downloaded tinystr v0.7.6
  Downloaded thiserror-impl v2.0.12
  Downloaded tauri-runtime-wry v2.11.4
  Downloaded icu_properties v1.5.1
  Downloaded gio-sys v0.18.1
  Downloaded soup3-sys v0.5.0
  Downloaded shlex v1.3.0
  Downloaded sha2 v0.10.8
  Downloaded rustc-hash v2.1.1
  Downloaded quote v1.0.38
  Downloaded pin-project-lite v0.2.16
  Downloaded lock_api v0.4.12
  Downloaded litemap v0.7.4
  Downloaded icu_locid v1.5.0
  Downloaded html5ever v0.38.0
  Downloaded gdk-sys v0.18.2
  Downloaded derive_more-impl v2.0.1
  Downloaded target-lexicon v0.12.16
  Downloaded synstructure v0.13.1
  Downloaded string_cache_codegen v0.6.1
  Downloaded string_cache v0.9.0
  Downloaded slab v0.4.9
  Downloaded signal-hook-registry v1.4.2
  Downloaded phf v0.13.1
  Downloaded ico v0.5.0
  Downloaded flate2 v1.1.1
  Downloaded derive_more v2.0.1
  Downloaded bytes v1.11.1
  Downloaded darling_core v0.20.10
  Downloaded darling v0.20.10
  Downloaded cssparser v0.36.0
  Downloaded cfb v0.7.3
  Downloaded cairo-rs v0.18.5
  Downloaded bit-vec v0.8.0
  Downloaded utf-8 v0.7.6
  Downloaded unic-char-range v0.9.0
  Downloaded unic-char-property v0.9.0
  Downloaded typeid v1.0.2
  Downloaded toml_writer v1.0.6+spec-1.1.0
  Downloaded time-macros v0.2.19
  Downloaded thiserror v2.0.12
  Downloaded tendril v0.5.0
  Downloaded servo_arc v0.4.3
  Downloaded raw-window-handle v0.6.2
  Downloaded proc-macro-error v1.0.4
  Downloaded pkg-config v0.3.31
  Downloaded phf_macros v0.13.1
  Downloaded phf_generator v0.13.1
  Downloaded parking_lot_core v0.9.10
  Downloaded pango-sys v0.18.0
  Downloaded libloading v0.7.4
  Downloaded idna_adapter v1.2.0
  Downloaded icu_locid_transform_data v1.5.0
  Downloaded glib-macros v0.18.5
  Downloaded crc32fast v1.4.2
  Downloaded atk v0.18.2
  Downloaded thiserror v1.0.69
  Downloaded proc-macro-crate v1.3.1
  Downloaded num-conv v0.1.0
  Downloaded icu_normalizer v1.5.0
  Downloaded cookie v0.18.1
  Downloaded camino v1.1.9
  Downloaded iana-time-zone v0.1.61
  Downloaded erased-serde v0.4.9
  Downloaded deranged v0.3.11
  Downloaded libappindicator-sys v0.9.0
  Downloaded rustc_version v0.4.1
  Downloaded pin-utils v0.1.0
  Downloaded percent-encoding v2.3.1
  Downloaded itoa v1.0.14
  Downloaded glib-sys v0.18.1
  Downloaded cfg-expr v0.15.8
  Downloaded siphasher v1.0.1
  Downloaded phf_shared v0.13.1
  Downloaded option-ext v0.2.0
  Downloaded new_debug_unreachable v1.0.6
  Downloaded icu_locid_transform v1.5.0
  Downloaded hex v0.4.3
  Downloaded gobject-sys v0.18.0
  Downloaded gdkwayland-sys v0.18.2
  Downloaded futures-executor v0.3.31
  Downloaded futures-channel v0.3.31
  Downloaded find-msvc-tools v0.1.6
  Downloaded fdeflate v0.3.7
  Downloaded equivalent v1.0.1
  Downloaded dtoa v1.0.9
  Downloaded dlopen2 v0.8.0
  Downloaded ctor-proc-macro v0.0.7
  Downloaded proc-macro-crate v2.0.0
  Downloaded precomputed-hash v0.1.1
  Downloaded phf_codegen v0.13.1
  Downloaded futures-sink v0.3.31
  Downloaded serialize-to-javascript-impl v0.1.2
  Downloaded serialize-to-javascript v0.1.2
  Downloaded serde_spanned v0.6.8
  Downloaded crypto-common v0.1.6
  Downloaded gtk3-macros v0.18.2
  Downloaded futures-macro v0.3.31
  Downloaded futures-io v0.3.31
  Downloaded dtor-proc-macro v0.0.6
  Downloaded dtoa-short v0.3.5
  Downloaded dpi v0.1.1
  Downloaded bit-set v0.8.0
  Downloaded proc-macro-error-attr v1.0.4
   Compiling proc-macro2 v1.0.106
   Compiling unicode-ident v1.0.14
   Compiling serde_core v1.0.228
   Compiling serde v1.0.228
   Compiling smallvec v1.13.2
   Compiling hashbrown v0.16.1
   Compiling equivalent v1.0.1
   Compiling winnow v0.7.14
   Compiling indexmap v2.11.4
   Compiling quote v1.0.38
   Compiling syn v2.0.117
   Compiling pkg-config v0.3.31
   Compiling heck v0.5.0
   Compiling target-lexicon v0.12.16
   Compiling libc v0.2.178
   Compiling version-compare v0.2.0
   Compiling cfg-expr v0.15.8
   Compiling autocfg v1.4.0
   Compiling memchr v2.7.4
   Compiling version_check v0.9.5
   Compiling litemap v0.7.4
   Compiling writeable v0.5.5
   Compiling thiserror v1.0.69
   Compiling cfg-if v1.0.1
   Compiling siphasher v1.0.1
   Compiling itoa v1.0.14
   Compiling phf_shared v0.13.1
   Compiling icu_locid_transform_data v1.5.0
   Compiling fastrand v2.3.0
   Compiling winnow v0.5.40
   Compiling synstructure v0.13.1
   Compiling phf_generator v0.13.1
   Compiling icu_properties_data v1.5.0
   Compiling stable_deref_trait v1.2.0
   Compiling proc-macro-error-attr v1.0.4
   Compiling syn v1.0.109
   Compiling semver v1.0.24
   Compiling proc-macro-error v1.0.4
   Compiling slab v0.4.9
   Compiling fnv v1.0.7
   Compiling write16 v1.0.0
   Compiling utf16_iter v1.0.5
   Compiling once_cell v1.21.4
   Compiling utf8_iter v1.0.4
   Compiling icu_normalizer_data v1.5.0
   Compiling pin-project-lite v0.2.16
   Compiling futures-core v0.3.31
   Compiling serde_derive v1.0.228
   Compiling zerofrom-derive v0.1.5
   Compiling yoke-derive v0.7.5
   Compiling zerovec-derive v0.10.3
   Compiling displaydoc v0.2.5
   Compiling zerofrom v0.1.5
   Compiling thiserror-impl v1.0.69
   Compiling icu_provider_macros v1.5.0
   Compiling yoke v0.7.5
   Compiling futures-macro v0.3.31
   Compiling futures-task v0.3.31
   Compiling pin-utils v0.1.0
   Compiling zerovec v0.10.4
   Compiling futures-util v0.3.31
   Compiling ryu v1.0.18
   Compiling parking_lot_core v0.9.10
   Compiling heck v0.4.1
   Compiling phf_macros v0.13.1
   Compiling futures-channel v0.3.31
   Compiling toml_datetime v0.6.8
   Comp

> ❗ **Important**
> 
> ✂ PR body was truncated to here.


</details>

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - "before 9am on monday"
- 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apanchoo/NetScan-AI).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42Ni40IiwidXBkYXRlZEluVmVyIjoiNDQuOTAuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 4 times, most recently from 8704880 to f45d45d Compare April 4, 2026 17:14
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 4 times, most recently from e61cacd to c7a6f29 Compare April 14, 2026 02:17
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 2 times, most recently from 15b1d19 to 75c31ea Compare April 17, 2026 00:18
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch from 75c31ea to ab79844 Compare April 23, 2026 23:17
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 3 times, most recently from 393a0be to 19a02ef Compare May 11, 2026 01:57
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 3 times, most recently from f5d74be to 5ffaba6 Compare May 21, 2026 22:48
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 4 times, most recently from 92b1d3e to 0c9b367 Compare May 28, 2026 23:49
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 3 times, most recently from 23ad900 to 406c508 Compare June 4, 2026 14:11
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 3 times, most recently from c5cf0f1 to 5684f5e Compare June 22, 2026 02:58
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 6 times, most recently from 56d7b10 to 91a1c35 Compare June 29, 2026 13:12
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 3 times, most recently from c58e959 to 456b137 Compare July 5, 2026 00:47
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 2 times, most recently from e44b32b to f4265c8 Compare July 13, 2026 23:48
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 8 times, most recently from 17b212b to f34790b Compare July 21, 2026 23:45
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 2 times, most recently from da853c7 to 5a67c6e Compare August 11, 2026 23:36
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 2 times, most recently from 971d930 to 81818bd Compare August 22, 2026 13:17
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 2 times, most recently from 32fdb7c to 2665e0d Compare August 31, 2026 15:03
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch 3 times, most recently from eda8c7d to d5c25ed Compare September 8, 2026 22:46
@renovate
renovate Bot force-pushed the renovate/cargo-dependencies branch from d5c25ed to e887367 Compare September 15, 2026 12:36
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.

1 participant