From 9f57bbfeb718ede4d13189b316f5ae98e7ae0891 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 02:18:19 +0000 Subject: [PATCH] Update rustix requirement from 0.36 to 0.37 Updates the requirements on [rustix](https://github.com/bytecodealliance/rustix) to permit the latest version. - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.36.0...v0.37.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 ff89201..7243a27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ autocfg = "1" [target.'cfg(unix)'.dependencies] async-io = "1.8" -rustix = { version = "0.36", default-features = false, features = ["std", "fs"] } +rustix = { version = "0.37", default-features = false, features = ["std", "fs"] } [target.'cfg(unix)'.dependencies.signal-hook] version = "0.3.0"