remove feature regex-filter

This commit is contained in:
p0lunin 2020-01-21 10:42:43 +02:00
parent 4db07fc189
commit 9c020a23cb
2 changed files with 2 additions and 7 deletions

View file

@ -5,9 +5,6 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
regex_filter = ["regex"]
[dependencies]
serde_json = "1.0.44"
serde = { version = "1.0.101", features = ["derive"] }
@ -27,5 +24,3 @@ pin-project = "0.4.6"
serde_with_macros = "1.0.1"
either = "1.5.3"
mime = "0.3.16"
regex = {version = "1.3.3", optional = true}

View file

@ -1,11 +1,11 @@
//! Update dispatching.
//mod dispatchers;
mod dispatchers;
pub mod error_handlers;
mod handler;
pub mod updaters;
//pub use dispatchers::filter::FilterDispatcher;
pub use dispatchers::filter::FilterDispatcher;
pub use error_handlers::ErrorHandler;
pub use handler::Handler;
pub use updaters::Updater;