From 759c8ab4cd62e40f5493bceb73aa9fae24bf08e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 01:47:21 +0000 Subject: [PATCH 1/2] Update rustix requirement from 0.38 to 1.0 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](https://github.com/bytecodealliance/rustix/compare/v0.38.0...v1.0.1) --- updated-dependencies: - dependency-name: rustix dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b4e2e26..a4cb94f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ tracing = { version = "0.1.40", default-features = false } [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" From c6c93bc37cf2f1e80d147d51e55543f20779f52e Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 26 May 2025 02:27:35 +0900 Subject: [PATCH 2/2] Update Cargo.toml --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a4cb94f..f923595 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ 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"] } [target.'cfg(windows)'.dependencies] blocking = "1.0.0" @@ -49,4 +49,3 @@ features = [ "Win32_Foundation", "Win32_System_Threading", ] -