From 42f091d12f062a1f2f3383dc9dc2c10314314e6b Mon Sep 17 00:00:00 2001 From: rabite Date: Wed, 22 May 2019 12:08:04 +0200 Subject: [PATCH] fix build on rust 1.26.1 filetime started requiring Rust 2018 with version 0.2.6, so version 0.2.5 has to be set explicitly to the build to succeed. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8dd077a0..2277d6db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ maintenance = { status = "passively-maintained" } anymap = "0.12.1" bitflags = "^1.0.4" crossbeam-channel = "0.3.8" -filetime = "^0.2.1" +filetime = "=0.2.5" libc = "^0.2.4" serde = { version = "1.0.89", features = ["derive"], optional = true } walkdir = "^2.0.1"