diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/rustix/Cargo.toml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/vendor/rustix/Cargo.toml b/vendor/rustix/Cargo.toml index 728c75d8c..78cdf495f 100644 --- a/vendor/rustix/Cargo.toml +++ b/vendor/rustix/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" rust-version = "1.63" name = "rustix" -version = "0.38.14" +version = "0.38.21" authors = [ "Dan Gohman <dev@sunfishcode.online>", "Jakub Konka <kubkon@jakubkonka.com>", @@ -133,8 +133,9 @@ all-apis = [ "pty", "rand", "runtime", - "system", + "shm", "stdio", + "system", "termios", "thread", "time", @@ -148,6 +149,7 @@ default = [ event = [] fs = [] io_uring = [ + "event", "fs", "net", "linux-raw-sys/io_uring", @@ -183,6 +185,7 @@ rustc-dep-of-std = [ "bitflags/rustc-dep-of-std", "compiler_builtins?/rustc-dep-of-std", ] +shm = ["fs"] std = [ "bitflags/std", "alloc", @@ -202,7 +205,7 @@ use-libc = [ use-libc-auxv = [] [target."cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))".dependencies.linux-raw-sys] -version = "0.4.3" +version = "0.4.8" features = [ "general", "ioctl", @@ -226,7 +229,7 @@ default-features = false package = "errno" [target."cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))".dependencies.linux-raw-sys] -version = "0.4.7" +version = "0.4.8" features = [ "general", "errno", |