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", ] }