diff --git a/Cargo.lock b/Cargo.lock index 7a4fd42..93f16a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -201,6 +201,7 @@ dependencies = [ "clap", "clap-cargo", "console", + "deranged", "fs-err", "home", "prettyplease", @@ -368,9 +369,9 @@ dependencies = [ [[package]] name = "deranged" -version = "0.4.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058" +checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" dependencies = [ "powerfmt", ] diff --git a/Cargo.toml b/Cargo.toml index b06cd22..d1690e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,6 +40,9 @@ toolchain_find = "0.4" [target.'cfg(all(windows, not(target_vendor = "uwp")))'.dependencies] windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_System_Com", "Win32_UI_Shell"] } +[target.'cfg(target_os = "macos")'.dependencies] +deranged = "=0.4.0" # https://github.com/jhpratt/deranged/issues/18 + [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"]