mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-14 11:44:04 +01:00
remove feature regex-filter
This commit is contained in:
parent
4db07fc189
commit
9c020a23cb
2 changed files with 2 additions and 7 deletions
|
@ -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}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue