From cf6c3d0a4c005871495d40e1751d35887c697fae Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Sat, 1 Aug 2020 11:02:02 +0300 Subject: [PATCH] fix: regex is not optional crate Actually we cannot mark regex as optional crate because we use regex in common method for all modes - Start --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index de1748e..eb45ebc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,13 +16,13 @@ readme = "README.md" [dependencies] lazy_static = "1.4.0" -regex = { version = "1.3.4", optional = true } +regex = "1.3.4" [features] default = ["search"] ingest = [] -search = ["regex"] +search = [] control = []