From 078342442ddfecd8e65a8fa4b3031753fbde05dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20M=C3=BChmel?= Date: Fri, 8 Nov 2019 13:33:28 +0100 Subject: [PATCH] removed the requirement on the 'regex' feature for the match plugin The nu_plugin_match binary wasn't built anymore after the regex dependency was made non-optional in https://github.com/nushell/nushell/pull/889, causing the removal of the regex feature, which nu_plugin_match depended on. --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e5a453be7b..3a7e81a4c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -152,7 +152,6 @@ path = "src/plugins/skip.rs" [[bin]] name = "nu_plugin_match" path = "src/plugins/match.rs" -required-features = ["regex"] [[bin]] name = "nu_plugin_sys"