Skip to content

fix(deps): update rust-minor#66

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 4, 2026

This PR contains the following updates:

Package Type Update Change
clap workspace.dependencies minor 4.5.574.6.0
extism (source) dependencies minor 1.13.01.21.0
indexmap dependencies minor 2.13.02.14.0
kameo dependencies minor 0.190.20
nbformat dependencies minor 1.0.01.2.2
owo-colors dependencies minor 4.2.34.3.0
tempfile (source) dev-dependencies minor 3.24.03.27.0
tempfile (source) dependencies minor 3.24.03.27.0
tokio (source) dependencies minor 1.49.01.51.1
tokio (source) dev-dependencies minor 1.49.01.51.1
uuid dependencies minor 1.20.01.23.0
wasm-encoder (source) dependencies minor 0.2440.246
wit-bindgen dependencies minor 0.52.00.55.0
zip dependencies minor 8.4.08.5.1

Release Notes

clap-rs/clap (clap)

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

extism/extism (extism)

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

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.
tokio-rs/tokio (tokio)

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)
uuid-rs/uuid (uuid)

v1.23.0

Compare Source

What's Changed

New Contributors

Special thanks

@​meng-xu-cs raised a series of bugs against the timestamp logic in uuid using automated tooling. The issues themselves were reasonably and responsibly presented and the end result is a better uuid library for everyone. Thanks!

Deprecations

This release includes the following deprecations:

  • Context: Renamed to ContextV1
  • Timestamp::from_gregorian: Renamed to Timestamp::from_gregorian_time

Change to Version::Max

Version::Max's u8 representation has changed from 0xff to 0x0f to match the value returned by Uuid::get_version_num.

Change to Uuid::get_version for the max UUID

Uuid::get_version will only return Some(Version::Max) if the UUID is actually the max UUID (all bytes are 0xff). Previously it would return Some if only the version field was 0x0f. This change matches the behaviour of the nil UUID, which only returns Some(Version::Nil) if the UUID is the nil UUID (all bytes are 0x00).

Full Changelog: uuid-rs/uuid@v1.22.0...v1.23.0

v1.22.0

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.21.0...v1.22.0

v1.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@v1.20.0...v1.21.0

bytecodealliance/wit-bindgen (wit-bindgen)

v0.55.0

Compare Source

What's Changed

New Contributors

Full Changelog: bytecodealliance/wit-bindgen@v0.54.0...v0.55.0

v0.54.0

Compare Source

What's Changed

New Contributors

Full Changelog: bytecodealliance/wit-bindgen@v0.53.1...v0.54.0

v0.53.1

Compare Source

What's Changed

New Contributors

Full Changelog: bytecodealliance/wit-bindgen@v0.53.0...v0.53.1

v0.53.0

Compare Source

What's Changed

New Contributors

Full Changelog: bytecodealliance/wit-bindgen@v0.52.0...v0.53.0

zip-rs/zip2 (zip)

v8.5.1

Compare Source

🚜 Refactor
  • change magic finder to stack buffer (#​763)
  • simplify extra field parsing (#​764)

v8.5.0

Compare Source

🐛 Bug Fixes
  • remove zip64 comment and add zip64 extensible data sector (#​747)
🚜 Refactor
  • remove useless magic in struct (#​730)
  • change extra_field from Arc<Vec> to Arc<[u8]> (#​741)
⚙️ Miscellaneous Tasks

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 7 times, most recently from 3d5c835 to 8a6622d Compare April 7, 2026 16:43
@renovate renovate bot force-pushed the renovate/rust-minor branch from 8a6622d to 0c0baaf Compare April 8, 2026 14:35
@renovate renovate bot force-pushed the renovate/rust-minor branch from 0c0baaf to eeae155 Compare April 9, 2026 21:54
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