From ca5c9b7c239f067443e6de51c86af478a1f2b176 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Mon, 6 Jun 2022 22:35:51 +1000 Subject: [PATCH] Add dep `guess_host_triple` for target_os `macos` Signed-off-by: Jiahao XU --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e4888364..9532caf5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,6 +62,9 @@ zip = { version = "0.6.2", default-features = false, features = [ "deflate", "bz # Enable feature zstdmt to enable multithreading in libzstd. zstd = { version = "0.10.0", features = [ "bindgen", "zstdmt" ], default-features = false } +[target.'cfg(target_os = "macos")'.dependencies] +guess_host_triple = "0.1.3" + [dev-dependencies] env_logger = "0.9.0"