diff --git a/Cargo.lock b/Cargo.lock index 297fc48b7..fc4311f36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1211,6 +1211,17 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "errno" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50d6a0976c999d473fe89ad888d5a284e55366d9dc9038b1ba2aa15128c4afa0" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys 0.45.0", +] + [[package]] name = "errno-dragonfly" version = "0.1.2" @@ -2155,7 +2166,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b799ad155d75ce914c467ee5627b62247c20d4aedbd446f821484cebf3cded7" dependencies = [ "bindgen", - "errno", + "errno 0.2.8", "libc", ] @@ -2944,7 +2955,7 @@ version = "0.76.1" dependencies = [ "atty", "chrono", - "errno", + "errno 0.3.0", "libc", "libproc", "log", @@ -4500,7 +4511,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbb2fda4666def1433b1b05431ab402e42a1084285477222b72d6c564c417cef" dependencies = [ "bitflags", - "errno", + "errno 0.2.8", "io-lifetimes", "libc", "linux-raw-sys", @@ -5940,6 +5951,15 @@ dependencies = [ "windows_x86_64_msvc 0.42.1", ] +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets", +] + [[package]] name = "windows-targets" version = "0.42.1" diff --git a/crates/nu-system/Cargo.toml b/crates/nu-system/Cargo.toml index eb568657d..7c02d4c7a 100644 --- a/crates/nu-system/Cargo.toml +++ b/crates/nu-system/Cargo.toml @@ -25,7 +25,7 @@ procfs = "0.14.0" [target.'cfg(target_os = "macos")'.dependencies] libproc = "0.12.0" -errno = "0.2" +errno = "0.3" mach2 = "0.4" [target.'cfg(target_os = "windows")'.dependencies]