From d7762297da02da64ab49a04260cb3a521888dbdc Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 5 Jul 2018 12:02:32 +0600 Subject: [PATCH] update actix dependency --- CHANGES.md | 7 ++++++- Cargo.toml | 3 +-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 71a5ae59b..fa18d8989 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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/` to default headers when building a request * port `Extensions` type from http create, we don't need `Send + Sync` -* `HttpRequest::query()` returns `&HashMap` +* `HttpRequest::query()` returns `Ref>` + +* `HttpRequest::cookies()` returns `Ref>>` ### Removed @@ -52,6 +56,7 @@ * Remove `HttpMessage::range()` + ## [0.6.14] - 2018-06-21 ### Added diff --git a/Cargo.toml b/Cargo.toml index 13dbb76d2..f9f148c29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"