From 6a11867754790d7985fb997000ec52381039edca Mon Sep 17 00:00:00 2001 From: Danny Bautista Date: Wed, 9 Oct 2019 11:50:32 -0400 Subject: [PATCH] Turn off regex default features. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9a71b27724..9927c9499d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ lazycell = "1" lazy_static = "1" peeking_take_while = "0.1.2" quote = { version = "1", default-features = false } -regex = "1.0" +regex = { version = "1.0", default-features = false , features = [ "std", "unicode"]} which = { version = "3.0", optional = true, default-features = false } shlex = "0.1" rustc-hash = "1.0.1"