1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

update actix dependency

This commit is contained in:
Nikolay Kim 2018-07-05 12:02:32 +06:00
parent d5606625a2
commit d7762297da
2 changed files with 7 additions and 3 deletions

View file

@ -39,11 +39,15 @@
* For safety and performance reasons `Handler::handle()` uses `&self` instead of `&mut self`
* `Handler::handle()` uses `&HttpRequest` instead of `HttpRequest`
* Added header `User-Agent: Actix-web/<current_version>` to default headers when building a request
* port `Extensions` type from http create, we don't need `Send + Sync`
* `HttpRequest::query()` returns `&HashMap<String, String>`
* `HttpRequest::query()` returns `Ref<HashMap<String, String>>`
* `HttpRequest::cookies()` returns `Ref<Vec<Cookie<'static>>>`
### Removed
@ -52,6 +56,7 @@
* Remove `HttpMessage::range()`
## [0.6.14] - 2018-06-21
### Added

View file

@ -50,8 +50,7 @@ flate2-c = ["flate2/miniz-sys"]
flate2-rust = ["flate2/rust_backend"]
[dependencies]
# actix = "0.7.0"
actix = { git="https://github.com/actix/actix.git" }
actix = "0.7.0"
base64 = "0.9"
bitflags = "1.0"