From b4a7479625797db33414af90d2f37e1b21be154d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jan 2025 06:22:56 +0000 Subject: [PATCH] Bump rustix from 0.38.43 to 0.38.44 Bumps [rustix](https://github.com/bytecodealliance/rustix) from 0.38.43 to 0.38.44. - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGELOG.md) - [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.43...v0.38.44) --- updated-dependencies: - dependency-name: rustix dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- device/Cargo.toml | 2 +- file/Cargo.toml | 2 +- time/Cargo.toml | 2 +- util/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c164e2d7a..a6a1d4dc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1087,9 +1087,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" [[package]] name = "rustix" -version = "0.38.43" +version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ "bitflags 2.7.0", "errno", diff --git a/device/Cargo.toml b/device/Cargo.toml index dcd3bbea3..6f5883aa7 100644 --- a/device/Cargo.toml +++ b/device/Cargo.toml @@ -13,7 +13,7 @@ libc = ["dep:rustix"] std = [] [dependencies] -rustix = { version = "0.38.43", default-features = false, features = [ +rustix = { version = "0.38.44", default-features = false, features = [ "stdio", ], optional = true } stak-vm = { version = "0.7.22", path = "../vm" } diff --git a/file/Cargo.toml b/file/Cargo.toml index 385d41f5d..a4bc5be37 100644 --- a/file/Cargo.toml +++ b/file/Cargo.toml @@ -14,7 +14,7 @@ std = [] [dependencies] heapless = { version = "0.8.0", default-features = false } -rustix = { version = "0.38.43", default-features = false, features = [ +rustix = { version = "0.38.44", default-features = false, features = [ "fs", ], optional = true } stak-vm = { version = "0.7.22", path = "../vm" } diff --git a/time/Cargo.toml b/time/Cargo.toml index 236f836b8..16f11c927 100644 --- a/time/Cargo.toml +++ b/time/Cargo.toml @@ -13,7 +13,7 @@ libc = ["dep:rustix"] std = [] [dependencies] -rustix = { version = "0.38.43", default-features = false, features = [ +rustix = { version = "0.38.44", default-features = false, features = [ "time", ], optional = true } stak-vm = { version = "0.7.22", path = "../vm" } diff --git a/util/Cargo.toml b/util/Cargo.toml index 9a4336ac6..fc13cd97c 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -10,7 +10,7 @@ repository.workspace = true [dependencies] libc = { version = "0.2.169", default-features = false } -rustix = { version = "0.38.43", default-features = false, features = [ +rustix = { version = "0.38.44", default-features = false, features = [ "fs", "mm", ] }