From ec088300f22debfdc2ab1936c794df353d1847eb Mon Sep 17 00:00:00 2001 From: kyren Date: Sat, 9 Sep 2017 21:03:22 -0400 Subject: [PATCH] Specify `gcc` crate dependency with minimum bound on version with `Build` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index feec968..2a24252 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ builtin-lua = ["gcc"] libc = { version = "0.2" } [build-dependencies] -gcc = { version = "0.3", optional = true } +gcc = { version = "0.3.52", optional = true } [dev-dependencies] rustyline = "1.0.0"