From 650918c5c19e19d58e620e8d2f6cee4e2c62a3d4 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 7 Nov 2022 13:38:01 -0800 Subject: [PATCH] Update to rustix 0.36. This is a minor update; the main change is that it uses io-lifetimes 1.0 internally, which means that on Rust 1.64 and later it's using the `OwnedFd` etc. from std instead of its own. This is not exposed in memfd's public API. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 24faaed..4346515 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = [".gitignore", ".travis.yml"] [dependencies] # Private dependencies. -rustix = { version = "0.35.6", features = ["fs"] } +rustix = { version = "0.36.0", features = ["fs"] } [package.metadata.release] disable-publish = true