From 1aceb797d26cd527f9b56416fabfec473ed77a87 Mon Sep 17 00:00:00 2001 From: soc Date: Wed, 4 Mar 2020 12:51:20 +0100 Subject: [PATCH] Fix compatibility with Rust 1.13 ... ... by pinning cfg-if to 0.1.9, as 0.1.10 introduced changes that broke the build. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8a230f2..f3f31e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,5 +10,5 @@ maintenance = { status = "actively-developed" } keywords = ["xdg", "basedir", "app_dirs", "path", "folder"] [dependencies] -cfg-if = "0.1" +cfg-if = "=0.1.9" dirs-sys = "0.3.4"