1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 17:59:35 +00:00

Export PathConfig and QueryConfig

Closes #597
This commit is contained in:
Douman 2018-11-20 23:06:38 +03:00
parent 6a93178479
commit 389cb13cd6
2 changed files with 7 additions and 1 deletions

View file

@ -1,5 +1,11 @@
# Changes
## [0.7.15] - 2018-xx-xx
## Changed
* `QueryConfig` and `PathConfig` are made public.
## [0.7.14] - 2018-11-14
### Added

View file

@ -255,7 +255,7 @@ pub mod dev {
pub use body::BodyStream;
pub use context::Drain;
pub use extractor::{FormConfig, PayloadConfig};
pub use extractor::{FormConfig, PayloadConfig, QueryConfig, PathConfig};
pub use handler::{AsyncResult, Handler};
pub use httpmessage::{MessageBody, Readlines, UrlEncoded};
pub use httpresponse::HttpResponseBuilder;