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
This commit is contained in:
parent
83ddc16ce1
commit
cf6c3d0a4c
1 changed files with 2 additions and 2 deletions
|
@ -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 = []
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue