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
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.20.0
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.50.0
tokio (source) dev-dependencies minor 1.49.01.50.0
usage-lib (source) dependencies minor 2.16.12.18.2
uuid dependencies minor 1.20.01.22.0
wasm-encoder (source) dependencies minor 0.2440.245
wit-bindgen dependencies minor 0.52.00.54.0

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

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

v2.18.2

Compare Source

🐛 Bug Fixes
📦️ Dependency Updates
New Contributors

v2.18.1

Compare Source

🐛 Bug Fixes
  • (lib) validate choices for variadic args and flags by @​jdx in #​520
🛡️ Security
📦️ Dependency Updates

v2.18.0

Compare Source

🚀 Features
  • (publish) extract communique into separate enhance-release job by @​jdx in #​513

v2.17.4

Compare Source

🐛 Bug Fixes
  • (publish) retry draft release creation until tag is indexed by @​jdx in #​510

v2.17.3

Compare Source

🐛 Bug Fixes
  • (publish) use gh api directly to create release with explicit tag_name by @​jdx in #​508

v2.17.2

Compare Source

🐛 Bug Fixes
  • (publish) anchor gh release create to GITHUB_SHA to avoid untagged release by @​jdx in #​506

v2.17.1

Compare Source

🔍 Other Changes

v2.17.0

Compare Source

🚀 Features
🐛 Bug Fixes
  • (docs) align homepage feature button with integrations page by @​jdx in #​496
📚 Documentation
  • add integrations directory with framework tracker by @​jdx in #​497
  • add integrations directory with framework tracker by @​jdx in #​499
🔍 Other Changes
📦️ Dependency Updates
New Contributors

v2.16.2

Compare Source

🐛 Bug Fixes
  • (lib) add missing child node support to arg parser by @​jdx in #​489
  • (release) write release notes to file instead of capturing stdout by @​jdx in #​488
  • (release) make release notes editorialization non-blocking by @​jdx in #​490
📚 Documentation
🔍 Other Changes
📦️ Dependency Updates
uuid-rs/uuid (uuid)

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


Configuration

📅 Schedule: 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 from 2daa52a to f3d5a4f Compare March 20, 2026 01:55
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