Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Updates the requirements on rustix to permit the latest version.

Changelog

Sourced from rustix's changelog.

Changes from 0.38.x to 1.x

Silent behavior changes

rustix::pipe::fcntl_setpipe_size now returns the new size, which may be greater than the requested size.

When a &mut Vec<_> is passed to rustix::event::epoll::wait, rustix::event::kqueue::kevent, or rustix::event::port::getn, these functions previously adjusted the length of the Vec to the number of elements written, and now do not. A common alternative is to wrap the &mut Vec<_> using spare_capacity, and then to clear the Vec by iterating using .drain(..) after each call. For an example of using spare_capacity in this way, see here.

API changes

rustix::thread::FutexOperation and rustix::thread::futex are removed. Use the functions in the rustix::thread::futex module instead.

rustix::process::waitpid's return type changed from WaitStatus to (Pid, WaitStatus), to additionally return the pid of the child.

terminating_signal and other functions in rustix::process::WaitStatus changed from returning u32 to returning i32, for better compatibility with the new Signal type and exit.

The SLAVE flag in rustix::mount::MountPropagationFlags is renamed to DOWNSTREAM.

... (truncated)

Commits
  • d50036a chore: Release rustix version 1.0.1
  • 9726bf3 Rename rustix_int_0x80 and protect it from multiple definitions. (#1396)
  • 0abc877 chore: Release rustix version 1.0.0
  • f26edab Miscellaneous documentation and debug output fixes. (#1390)
  • 7d6d3fa Add convenient is_ functions to FileType (#1388)
  • 62ce4df Disable use-libc-auxv by default, and document cargo features (#1389)
  • d7819fd Temporarily disable armv7-sony-vita-newlibeabihf in CI, as it gets build errors.
  • 1532193 Fix typo in buffer.rs (#1386)
  • a5acccc Use i32 for exit statuses too. (#1384)
  • 7cab925 Don't build the clockid module on x86. (#1382)
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Updates the requirements on [rustix](https://github.com/bytecodealliance/rustix) to permit the latest version.
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md)
- [Commits](bytecodealliance/rustix@v0.38.0...v1.0.1)

---
updated-dependencies:
- dependency-name: rustix
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@taiki-e taiki-e force-pushed the dependabot/cargo/rustix-1.0 branch from 74f21a4 to 79f3f15 Compare May 25, 2025 17:20
@taiki-e taiki-e force-pushed the dependabot/cargo/rustix-1.0 branch from ae8e00e to c6c93bc Compare May 25, 2025 17:27
Comment on lines 25 to +34
[target.'cfg(unix)'.dependencies]
async-signal = "0.2.3"
rustix = { version = "0.38", default-features = false, features = ["std", "fs"] }
rustix = { version = "1.0", default-features = false, features = ["std", "fs"] }

[target.'cfg(any(windows, target_os = "linux"))'.dependencies]
async-channel = "2.0.0"
async-task = "4.7.0"

[target.'cfg(all(unix, not(target_os = "linux")))'.dependencies]
rustix = { version = "0.38", default-features = false, features = ["std", "fs", "process"] }
rustix = { version = "1.0", default-features = false, features = ["std", "fs", "process"] }
Copy link
Collaborator

@taiki-e taiki-e May 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that ["std", "fs"] and ["std", "fs", "process"] make no actual difference here because async-signal enables the process feature in unix.
https://github.com/smol-rs/async-signal/blob/b604e340425dfffbb733f0199f4d5d14b447f19b/Cargo.toml#L21

(And it is a disappointment that dependabot cannot update these two at the same time.)

@taiki-e taiki-e merged commit c57fe1d into master May 25, 2025
15 checks passed
@taiki-e taiki-e deleted the dependabot/cargo/rustix-1.0 branch May 25, 2025 17:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant