From 92a2e15d668beb2dd3efbefbd709255dc8c289ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 14:23:12 +0000 Subject: [PATCH] Update rustix requirement from 0.37.11 to 0.38.2 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.37.11...v0.38.2) --- 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 a0e316f..d9331c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ tracing = { version = "0.1.37", default-features = false } [target.'cfg(any(unix, target_os = "fuchsia", target_os = "vxworks"))'.dependencies] libc = "0.2.77" -rustix = { version = "0.37.11", features = ["process", "time", "fs", "std"], default-features = false } +rustix = { version = "0.38.2", features = ["process", "time", "fs", "std"], default-features = false } [target.'cfg(windows)'.dependencies] concurrent-queue = "2.2.0"