From de0d76f7966e0f6546892a22db48d75ad9e53cf1 Mon Sep 17 00:00:00 2001 From: Danilo Bargen Date: Thu, 10 Oct 2019 20:30:29 +0200 Subject: [PATCH] Change lazy_static version specifier to 1 (#391) This allows cursive to be used together with libraries that pin the `lazy_static` dependency to a version below 1.3. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2b66f40..fe83e72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ xi-unicode = "0.2.0" libc = "0.2.60" term_size = { version = "0.3.1", optional = true } crossbeam-channel = "0.3.9" -lazy_static = "1.3.0" +lazy_static = "1" chrono = "0.4.7" cfg-if = "0.1.9" ahash = "0.2.12"