Skip to content

fix(deps): update rust-minor#66

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rust-minor
Open

fix(deps): update rust-minor#66
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rust-minor

Conversation

@renovate

@renovate renovate Bot commented Feb 4, 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
chumsky dependencies minor 0.120.13
clap workspace.dependencies minor 4.5.574.6.2
cucumber dependencies minor 0.220.23
cucumber dev-dependencies minor 0.220.23
extism (source) dependencies minor 1.13.01.30.0
indexmap dependencies minor 2.13.02.14.0
kameo dependencies minor 0.190.22
nbformat dependencies minor 1.0.01.2.2
owo-colors dependencies minor 4.2.34.3.0
regex dependencies minor 1.12.31.13.1
starbase workspace.dependencies minor 0.100.13
tempfile (source) dev-dependencies minor 3.24.03.27.0
tempfile (source) dependencies minor 3.24.03.27.0
termimad dependencies minor 0.340.35
tokio (source) dependencies minor 1.49.01.53.0
tokio (source) dev-dependencies minor 1.49.01.53.0
usage-lib (source) dependencies minor 3.2.03.5.5
uuid dependencies minor 1.20.01.24.0
wasm-encoder (source) dependencies minor 0.2440.253
wit-bindgen dependencies minor 0.52.00.59.0
zip dependencies minor 8.4.08.6.0

Release Notes

zesterer/chumsky (chumsky)

v0.13.0

Added
  • select! and select_ref! now support cfg attributes.
  • You can now call as_terminal and as_non_terminal on labels that will hide the internals for the debug info
  • RichReason can now be provided with an arbitrary RichReason::Custom type parameter
  • Implemented ConfigParser for OneOf
  • Rich::map_span
  • Parser::map_err_with
  • Parser::filter_map
Removed
  • Unused spin and sync feature flags
Changed
  • Debug info now uses the Display impl to render labels with instead of Debug
  • Migrated to Codeberg, updated links accordingly
  • Removed the unstable Cache API due to soundness issues
  • Added DefaultExpected::NothingElse to allow parsers that can never succeed to generate correct errors
  • Removed the Container trait in favour of std's FromIterator, allowing .collect() to work with a greater range of types
Fixed
  • Labelled -> LabelledWith conversion now carries over the proper debug settings
  • Fixed crash when using memoisation with certain kinds of error generation
  • DefaultExpected::into_owned now has more permissive lifetime constraints
clap-rs/clap (clap)

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

v4.6.0

Compare Source

Compatibility
  • Update MSRV to 1.85

v4.5.61

Compare Source

Internal
  • Update dependencies

v4.5.60

Compare Source

Fixes
  • (help) Quote empty default values, possible values

v4.5.59

Compare Source

Fixes
  • Command::ignore_errors no longer masks help/version on subcommands

v4.5.58

Compare Source

cucumber-rs/cucumber (cucumber)

v0.23.0

Compare Source

Diff | Milestone

BC Breaks
  • Fixed precedence of operations in tag expressions to align with upstream. (gherkin#52, gherkin#51)
Changed
  • Upgraded [gherkin] crate to 0.16 version. (0d544772)
  • Allowed And-like and But-like keywords at the beginning of Scenario, automatically considering them as Given-type steps. (gherkin#53)
extism/extism (extism)

v1.30.0

Compare Source

What's Changed

New Contributors

Full Changelog: extism/extism@v1.21.0...v1.30.0

v1.21.0

Compare Source

What's Changed

Full Changelog: extism/extism@v1.20.0...v1.21.0

v1.20.0

Compare Source

What's Changed

Breaking Changes

  • With this release, the UserData type must be thread-safe when using it in a Pool implementation in Rust. Pools have never been formally considered part of the API, so similarly this is not fully considered a breaking change - but be aware that in some cases Rust users may need to update their code.

Full Changelog: extism/extism@v1.13.0...v1.20.0

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}
tqwewe/kameo (kameo)

v0.22.2

Compare Source

Fixed
  • Make actor.handle_message a root span linked to actor.lifecycle (#​382) </>
Documentation
  • Clarify ActorStopReason::Panicked covers hook errors, add PanicError::is_panic (#​375) </>

v0.22.1

Compare Source

Misc

v0.22.0

Compare Source

Added
  • Add on_undelivered hook for messages left in the mailbox at terminal stop (#​363) </>
  • Reject new messages after stop_gracefully instead of silently dropping them (#​362) </>
  • BREAKING: Add ctx.pipe and ctx.pipe_with for pipe-to-self (#​360) </>
Changed
  • BREAKING: Make ActorRef cloning a single Arc clone (#​365) </>
  • BREAKING: Return pending ask's message as ActorRestarting/ActorNotRunning during drain (#​359) </>
Fixed
  • Deliver leftover tells to on_undelivered when the restart budget is exhausted (#​364) </>
Documentation
  • Fix spacing between sponsor avatars in README </>

v0.21.1

Compare Source

Added
  • Add per-actor default reply timeout via PreparedActor (#​354) </>
Changed
  • Drop all messages during drain instead of buffering tells and processing asks (#​351) </>
  • Disable cargo http multiplexing to avoid crates.io HTTP/2 framing errors </>
  • Increase cargo net retry to ride out crates.io HTTP/2 flakes </>
Fixed
  • De-flake scheduler interval doctest </>
  • Skip and simplify bounded mailbox tests under hotpath feature </>
  • Use deterministic fake time for bounded mailbox unit tests </>
Misc
  • Automate releases with release-plz (#​352) </>

v0.21.0

Compare Source

Added
  • BREAKING: Support error chains on SendError (#​338)
  • Add clippy allow attribute to methods tagged with #[message] to ensure compatibility with clippy::pedantic (#​321)
  • Add live actor-system monitoring console TUI (#​343)
Fixed
  • Deadlocks in ActorRef lifecycle methods, catch panics in actor shutdown (#​340)
  • Preserve pending mailbox messages on actor stop/restart (#​345)
  • Prevent actor.handle_message spans from nesting unboundedly on self-sends (#​346)
Documentation
  • Update supervision page to cover new parent supervision (#​315)
  • Add haruki-nikaidou to sponsors </>
Misc
  • Fix link in CHANGELOG.md </>
  • Update hotpath requirement from 0.11 to 0.14 (#​319)
  • Update hotpath requirement from 0.11 to 0.15 (#​324)
  • Update hotpath requirement from 0.11 to 0.16 (#​326)
  • Update opentelemetry requirement from 0.31 to 0.32 (#​327)
  • Update hotpath requirement from 0.11 to 0.16 (#​328)
  • Update opentelemetry requirement from 0.31 to 0.32 (#​329)
  • Update hotpath requirement from 0.11 to 0.17 (#​337)
  • Update tracing-opentelemetry requirement from 0.32 to 0.33 (#​332)
  • Update opentelemetry requirement from 0.31 to 0.32 (#​330)
  • Use libp2p::identity instead of libp2p_identity directly (#​339)
  • Fix typos (#​342)

v0.20.0

Compare Source

Added
  • BREAKING: Add PanicReason enum to PanicError </>
  • BREAKING: Add supervision support (#​314)
  • BREAKING: Add support for returning errors in Actor::next </>
  • Add support for channels-console (#​261) </>
  • Add utility methods to WeakActorRef
  • Improve error message
  • Add tracing span support (#​309)
  • Add #[must_use] to pure getter methods </>
  • Add non-blocking startup/shutdown result accessors to ActorRef </>
  • Add RestartPolicy::Never </>
  • Add TellRequest::send_after for delayed message delivery </>
Changed
  • BREAKING: Replace channels-console with hotpath (#​263)
  • BREAKING: Return ActorStopReason in shutdown result (#​316)
  • Use idiomatic rust patterns </>
  • Format supervision.rs </>
Removed
  • Remove unnecessary Sync bound from supervise_with </>
Fixed
  • Metrics counter names (#​260) </>
  • Use correct spawn invocation in getting-started.mdx
  • Fix sibbling typo
  • Update hotpath link and gif
  • Make SwarmSender::send() non-panicking when channel is closed </>
  • Prevent actor tasks from panicking in Actor::next and Actor::on_panic calls </>
  • Incorrect panic reasons in panic errors </>
  • Missing display impl for PanicReason::Next variant
  • Request::ask::tests::bounded_ask_requests_mailbox_timeout test </>
  • Tests
  • Bounded_tell_requests_mailbox_full needs 2 messages to fill
  • Prevent deadlock when supervisor shuts down children </>
Documentation
  • Add observability page </>
  • Update kameo msrv </>
  • Remove sponsor from README.md
  • Remove sponsor from README.md </>
  • Fix on_start return type in example </>
Misc
  • Bump kameo to version 0.19.2 </>
  • Fix clippy non-canonical lints for Infallible error type
  • Upgrade dependencies </>
  • Update hotpath requirement from 0.11 to 0.13 (#​313)
  • Update hotpath requirement from 0.11 to 0.14 (#​317)
  • Update hotpath requirement from 0.11 to 0.14 (#​318)
  • Bump kameo_macros to version 0.20.0 </>
runtimed/runtimed (nbformat)

v1.2.2

Compare Source

v1.2.1

Compare Source

v1.2.0

Compare Source

v1.1.0

Compare Source

owo-colors/owo-colors (owo-colors)

v4.3.0

Compare Source

Fixed
  • Scripts in the scripts/ directory are no longer published in the crate package. Thanks weiznich for your first contribution!
Changed
  • Mark methods with #[rust_analyzer::completions(ignore_flyimport)] and the OwoColorize trait with #[rust_analyzer::completions(ignore_flyimport_methods)]. This prevents owo-colors methods from being completed with rust-analyzer unless the OwoColorize trait is included.

    Unfortunately, this also breaks explicit autocomplete commands such as Ctrl-Space in many editors. (The language server protocol doesn't appear to have a way to differentiate between implicit and explicit autocomplete commands.) On balance we believe this is the right approach, but please do provide feedback on PR #​141 if it negatively affects you.

  • Updated MSRV to Rust 1.81.

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.
moonrepo/starbase (starbase)

v0.13.1

Compare Source

v0.13.0

Compare Source

v0.12.3

Compare Source

v0.12.2

Compare Source

v0.12.1

Compare Source

v0.12.0

Compare Source

v0.11.4

Compare Source

v0.11.3

Compare Source

v0.11.2

Compare Source

v0.11.1

Compare Source

v0.11.0

Compare Source

v0.10.10

Compare Source

Stebalien/tempfile (tempfile)

v3.27.0

Compare Source

This release adds TempPath::try_from_path and deprecates TempPath::from_path.

Prior to this release, TempPath::from_path made no attempts to convert relative paths into absolute paths. The following code would have deleted the wrong file:

let tmp_path = TempPath::from_path("foo")
std::env::set_current_dir("/some/other/path").unwrap();
drop(tmp_path);

Now:

  1. TempPath::from_path will attempt to convert relative paths into absolute paths. However, this isn't always possible as we need to call std::env::current_dir, which can fail. If we fail to convert the relative path to an absolute path, we simply keep the relative path.
  2. The TempPath::try_from_path behaves exactly like TempPath::from_path, except that it returns an error if we fail to convert a relative path into an absolute path (or if the passed path is empty).

Neither function attempt to verify the existence of the file in question.

Thanks to @​meng-xu-cs for reporting this issue.

v3.26.0

v3.25.0

  • Allow getrandom 0.4.x while retaining support for getrandom 0.3.x.
Canop/termimad (termimad)

v0.35.1

  • Fix a panic in some cases of tables with rows having more columns than the header row - Fix #​77

v0.35.0

  • Support for ordered lists, and their depth dependent styling - Fix #​75
  • Unordered list items can also be created with - and + and not just *
  • CompoundStyle, LineStyle, and StyledChar are now Copy
tokio-rs/tokio (tokio)

v1.53.0: Tokio v1.53.0

Compare Source

1.53.0 (July 17th, 2026)

Added
  • fs: implement From<OwnedFd> and From<OwnedHandle> for File (#​8266)
  • metrics: add task schedule latency metric (#​7986)
  • net: add SocketAddr methods to Unix sockets (#​8144)
Changed
  • io: add #[inline] to IO trait impls for in-memory types (#​8242)
  • net: implement UCred::pid on FreeBSD (#​8086)
  • net: support Nuttx target os (#​8259)
  • signal: refactor global variables on Windows (#​8231)
  • sync: mpsc::{Receiver,UnboundedReceiver} now drops waker on drop, even if there are still senders (#​8095)
  • taskdump: support taskdumps on s390x (#​8192)
  • time: add #[track_caller] to timeout_at() (#​8077)
  • time: consolidate mutex locks on spurious poll (#​8124)
  • time: defer waker clone on spurious poll (#​8107)
  • time: move lazy-registration state into Sleep (#​8132)
  • tracing: remove unnecessary span clone (#​8126)
Fixed
  • io: do not treat zero-length reads as EOF in Chain (#​8251)
  • net: use getpeereid for QNX peer credentials (#​8270)
  • runtime: avoid illegal state in FastRand (#​8078)
  • sync: wake mpsc receiver when a queued reserve[_many] returns permits (#​8260)
  • taskdump: skip double wake on Trace::capture/Trace::trace_with (#​8043)
  • time: avoid stack overflow in runtime constructor (#​8093)
  • time (alt timer): ensure timers stay in the same runtime after .reset() (#​8169)
IO uring (unstable)
  • fs: use io-uring for fs::try_exists (#​8080)
  • fs: use io-uring for renaming files (#​7800)
  • rt: flush io-uring CQE in case of CQE overflow (#​8277)
Documented
  • docs: clarify cancel safety wording (#​8181)
  • fs: clarify create_dir_all succeeds if path exists (#​8149)
  • io: add warning about stdout reordering with multiple handles (#​8276)
  • net: document pipe try_read*/try_write* readiness behavior (#​8032)
  • runtime: document interaction with fork() (#​8202)
  • sync: clarify broadcast lagging semantics (#​8239)
  • sync: document memory ordering guarantees for Semaphore (#​8119)
  • task: explain why yield_now defers its waker (#​8254)
  • time: add panic docs to timeout_at() (#​8077)
  • time: fix reversed poll order in timeout doc (#​8214)

v1.52.4: Tokio v1.52.4

Compare Source

1.52.4 (July 16th, 2026)

Fixed
  • runtime: don't skip the driver when before_park schedules work (#​8222)
Fixed (unstable)
  • taskdump: remove crate disambiguators from output (#​8264)

v1.52.3: Tokio v1.52.3

Compare Source

1.52.3 (May 8th, 2026)

Fixed
  • sync: fix underflow in mpsc channel len() (#​8062)
  • sync: notify receivers in mpsc OwnedPermit::release() method (#​8075)
  • sync: require that an RwLock has max_readers != 0 (#​8076)
  • sync: return Empty from try_recv() when mpsc is closed with outstanding permits (#​8074)

v1.52.2: Tokio v1.52.2

Compare Source

1.52.2 (May 4th, 2026)

This release reverts the LIFO slot stealing change introduced in 1.51.0 (#​7431), due to its performance impact. (#​8100)

v1.52.1: Tokio v1.52.1

Compare Source

1.52.1 (April 16th, 2026)

Fixed

v1.52.0: Tokio v1.52.0

Compare Source

1.52.0 (April 14th, 2026)

Added

  • io: AioSource::register_borrowed for I/O safety support (#​7992)
  • net: add try_io function to unix::pipe sender and receiver types (#​8030)

Added (unstable)

  • runtime: Builder::enable_eager_driver_handoff setting enable eager hand off of the I/O and time drivers before polling tasks (#​8010)
  • taskdump: add trace_with() for customized task dumps (#​8025)
  • taskdump: allow impl FnMut() in trace_with instead of just fn() (#​8040)
  • fs: support io_uring in AsyncRead for File (#​7907)

Changed

  • runtime: improve spawn_blocking scalability with sharded queue (#​7757)
  • runtime: use compare_exchange_weak() in worker queue (#​8028)

Fixed

  • runtime: overflow second half of tasks when local queue is filled instead of first half (#​8029)

Documented

  • docs: fix typo in oneshot::Sender::send docs (#​8026)
  • docs: hide #[tokio::main] attribute in the docs of sync::watch (#​8035)
  • net: add docs on ConnectionRefused errors with UDP sockets (#​7870)

v1.51.4: Tokio v1.51.4

Compare Source

1.51.4 (July 16th, 2026)

Fixed
  • runtime: don't skip the driver when before_park schedules work (#​8222)

v1.51.3: Tokio v1.51.3

Compare Source

1.51.3 (May 8th, 2026)

Fixed
  • sync: fix underflow in mpsc channel len() (#​8062)
  • sync: notify receivers in mpsc OwnedPermit::release() method (#​8075)
  • sync: require that an RwLock has max_readers != 0 (#​8076)
  • sync: return Empty from try_recv() when mpsc is closed with outstanding permits (#​8074)

v1.51.2: Tokio v1.51.1

Compare Source

1.51.2 (May 4th, 2026)

This release reverts the LIFO slot stealing change introduced in 1.51.0 (#​7431), due to its performance impact. (#​8100)

v1.51.1: Tokio v1.51.1

Compare Source

1.51.1 (April 8th, 2026)
Fixed
  • sync: fix semaphore reopens after forget (#​8021)
  • net: surface errors from SO_ERROR on recv for UDP sockets on Linux (#​8001)
Fixed (unstable)
  • metrics: fix worker_local_schedule_count test (#​8008)
  • rt: do not leak fd when cancelling io_uring open operation (#​7983)

v1.51.0: Tokio v1.51.0

Compare Source

1.51.0 (April 3rd, 2026)
Added
  • net: implement get_peer_cred on Hurd (#​7989)
  • runtime: add tokio::runtime::worker_index() (#​7921)
  • runtime: add runtime name (#​7924)
  • runtime: stabilize LocalRuntime (#​7557)
  • wasm: add wasm32-wasip2 networking support (#​7933)
Changed
  • runtime: steal tasks from the LIFO slot (#​7431)
Fixed
  • docs: do not show "Available on non-loom only." doc label (#​7977)
  • macros: improve overall macro hygiene (#​7997)
  • sync: fix notify_waiters priority in Notify (#​7996)
  • sync: fix panic in Chan::recv_many when called with non-empty vector on closed channel (#​7991)

v1.50.0: Tokio v1.50.0

Compare Source

1.50.0 (Mar 3rd, 2026)
Added
  • net: add TcpStream::set_zero_linger (#​7837)
  • rt: add is_rt_shutdown_err (#​7771)
Changed
  • io: add optimizer hint that memchr returns in-bounds pointer (#​7792)
  • io: implement vectored writes for write_buf (#​7871)
  • runtime: panic when event_interval is set to 0 (#​7838)
  • runtime: shorten default thread name to fit in Linux limit (#​7880)
  • signal: remember the result of SetConsoleCtrlHandler (#​7833)
  • signal: specialize windows Registry (#​7885)
Fixed
  • io: always cleanup AsyncFd registration list on deregister (#​7773)
  • macros: remove (most) local use declarations in tokio::select! (#​7929)
  • net: fix GET_BUF_SIZE constant for target_os = "android" (#​7889)
  • runtime: avoid redundant unpark in current_thread scheduler (#​7834)
  • runtime: don't park in current_thread if before_park defers waker (#​7835)
  • io: fix write readiness on ESP32 on short writes (#​7872)
  • runtime: wake deferred tasks before entering block_in_place (#​7879)
  • sync: drop rx waker when oneshot receiver is dropped (#​7886)
  • runtime: fix double increment of num_idle_threads on shutdown (#​7910, #​7918, #​7922)
Unstable
  • fs: check for io-uring opcode support (#​7815)
  • runtime: avoid lock acquisition after uring init (#​7850)
Documented
  • docs: update outdated unstable features section (#​7839)
  • io: clarify the behavior of AsyncWriteExt::shutdown() (#​7908)
  • io: explain how to flush stdout/stderr (#​7904)
  • io: fix incorrect and confusing AsyncWrite documentation (#​7875)
  • rt: clarify the documentation of Runtime::spawn (#​7803)
  • rt: fix missing quotation in docs (#​7925)
  • runtime: correct the default thread name in docs (#​7896)
  • runtime: fix event_interval doc (#​7932)
  • sync: clarify RwLock fairness documentation (#​7919)
  • sync: clarify that recv returns None once closed and no more messages (#​7920)
  • task: clarify when to use spawn_blocking vs dedicated threads (#​7923)
  • task: doc that task drops before JoinHandle completion (#​7825)
  • signal: guarantee that listeners never return None (#​7869)
  • task: fix task module feature flags in docs (#​7891)
  • task: fix two typos (#​7913)
  • task: improve the docs of Builder::spawn_local (#​7828)
  • time: add docs about auto-advance and when to use sleep (#​7858)
  • util: fix typo in docs (#​7926)
jdx/usage (usage-lib)

v3.5.5

Compare Source

🐛 Bug Fixes
📚 Documentation
🧪 Testing
  • invoke typescript compiler through npx package by @​jdx in #​719
🔍 Other Changes

v3.5.4

Compare Source

🐛 Bug Fixes
🔍 Other Changes
📦️ Dependency Updates

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore(deps): update rust crate zip to v7.3.0 chore(deps): update rust crate zip to v7.4.0 Feb 6, 2026
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 2 times, most recently from fb960b3 to ce7fbc8 Compare February 9, 2026 21:29
@renovate renovate Bot changed the title chore(deps): update rust crate zip to v7.4.0 chore(deps): update rust-minor Feb 9, 2026
@renovate
renovate Bot force-pushed the renovate/rust-minor branch from ce7fbc8 to f4c1dd0 Compare February 10, 2026 20:33
@renovate renovate Bot changed the title chore(deps): update rust-minor fix(deps): update rust-minor Feb 10, 2026
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 6 times, most recently from d2100c9 to c75ee03 Compare February 18, 2026 18:33
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 5 times, most recently from 165a111 to 43d6d37 Compare February 25, 2026 00:43
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 8819e78 to eaed6e8 Compare March 7, 2026 03:02
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 6c431f0 to 2daa52a Compare March 16, 2026 16:55
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 3 times, most recently from 7954d80 to 045a745 Compare March 26, 2026 22:33
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 2 times, most recently from 46f17e8 to 2c18eec Compare March 31, 2026 21:21
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 3 times, most recently from 1b909c6 to 680360b Compare April 17, 2026 18:00
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 3fe95ff to 690ffa9 Compare April 28, 2026 19:10
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from d75e119 to b1d76b3 Compare May 8, 2026 14:43
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 2 times, most recently from 3aeea73 to c48b3aa Compare May 21, 2026 18:13
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from e1c53a9 to 2cd12f9 Compare June 4, 2026 17:08
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 7 times, most recently from 5a99c81 to 07807d5 Compare June 14, 2026 22:16
@renovate
renovate Bot force-pushed the renovate/rust-minor branch 4 times, most recently from 4e19bae to 1d5ac9d Compare June 21, 2026 12:43
@renovate
renovate Bot force-pushed the renovate/rust-minor branch from 1d5ac9d to 66ceffc Compare June 23, 2026 21:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants