diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/rustix/Cargo.toml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/vendor/rustix/Cargo.toml b/vendor/rustix/Cargo.toml index 25acf14fd..ed3e5b623 100644 --- a/vendor/rustix/Cargo.toml +++ b/vendor/rustix/Cargo.toml @@ -11,8 +11,9 @@ [package] edition = "2018" +rust-version = "1.48" name = "rustix" -version = "0.36.3" +version = "0.36.5" authors = [ "Dan Gohman <dev@sunfishcode.online>", "Jakub Konka <kubkon@jakubkonka.com>", @@ -151,7 +152,7 @@ io_uring = [ mm = [] net = [] os_pipe = ["io-lifetimes/os_pipe"] -param = [] +param = ["fs"] process = [] procfs = [ "once_cell", @@ -185,6 +186,9 @@ features = [ ] default-features = false +[target."cfg(all(criterion, not(any(target_os = \"emscripten\", target_os = \"wasi\"))))".dev-dependencies.criterion] +version = "0.4" + [target."cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"), all(target_endian = \"little\", any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"powerpc64\", target_arch = \"riscv64\", target_arch = \"mips\", target_arch = \"mips64\")))))".dependencies.libc] version = "0.2.133" features = ["extra_traits"] @@ -219,9 +223,6 @@ package = "errno" version = "1.5.2" optional = true -[target."cfg(not(target_os = \"emscripten\"))".dev-dependencies.criterion] -version = "0.4" - [target."cfg(windows)".dependencies.windows-sys] version = "0.42.0" features = [ |