From a54281d57f1b8e1ddda49ade5c2ce7ad7522c519 Mon Sep 17 00:00:00 2001 From: Basile Clement Date: Fri, 9 Nov 2018 10:36:02 +0100 Subject: [PATCH] Pin lazy_static to ~1.1 lazy_static 1.2 requires Rust 1.24.1+ but we support 1.21+ --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 313548693b5..e71e3d4c0be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,8 @@ ansi_term = { version = "0.11", optional = true } [dev-dependencies] regex = "1" -lazy_static = "1" +# lazy_static 1.2 requires Rust 1.24.1+ +lazy_static = "~1.1" version-sync = "0.5" [features]