From 5426413cb6349219671f972ad2293331c91877cc Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 24 Apr 2019 13:00:30 -0700 Subject: [PATCH] update dependencies --- CHANGES.md | 2 ++ Cargo.toml | 7 ++++--- awc/CHANGES.md | 1 + awc/Cargo.toml | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 81be2a344..2b637a733 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,7 @@ # Changes +## [1.0.0-beta.2] - 2019-04-24 + ### Added * Extend `Responder` trait, allow to override status code and headers. diff --git a/Cargo.toml b/Cargo.toml index f4720a1c9..d1855b22d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" authors = ["Nikolay Kim "] description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust." readme = "README.md" @@ -71,10 +71,11 @@ actix-utils = "0.3.4" actix-router = "0.1.3" actix-rt = "0.2.2" actix-web-codegen = "0.1.0-beta.1" -actix-http = { version = "0.1.2", features=["fail"] } +actix-http = { version = "0.1.4", features=["fail"] } actix-server = "0.4.3" actix-server-config = "0.1.1" actix-threadpool = "0.1.0" +actix = { version = "0.8.1", features=["http"], optional = true } awc = { version = "0.1.1", optional = true } bytes = "0.4" @@ -98,7 +99,7 @@ openssl = { version="0.10", optional = true } rustls = { version = "^0.15", optional = true } [dev-dependencies] -actix-http = { version = "0.1.2", features=["ssl", "brotli", "flate2-zlib"] } +actix-http = { version = "0.1.4", features=["ssl", "brotli", "flate2-zlib"] } actix-http-test = { version = "0.1.1", features=["ssl"] } actix-files = { version = "0.1.0-beta.1" } rand = "0.6" diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 10ab87bda..124efc36a 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -4,6 +4,7 @@ * Allow to send headers in `Camel-Case` form. + ## [0.1.1] - 2019-04-19 ### Added diff --git a/awc/Cargo.toml b/awc/Cargo.toml index e6018f44f..8f64a3c68 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -38,7 +38,7 @@ flate2-rust = ["actix-http/flate2-rust"] [dependencies] actix-codec = "0.1.2" actix-service = "0.3.6" -actix-http = "0.1.2" +actix-http = "0.1.4" base64 = "0.10.1" bytes = "0.4" derive_more = "0.14" @@ -56,8 +56,8 @@ openssl = { version="0.10", optional = true } [dev-dependencies] actix-rt = "0.2.2" actix-web = { version = "1.0.0-beta.1", features=["ssl"] } -actix-http = { version = "0.1.2", features=["ssl"] } -actix-http-test = { version = "0.1.0", features=["ssl"] } +actix-http = { version = "0.1.4", features=["ssl"] } +actix-http-test = { version = "0.1.1", features=["ssl"] } actix-utils = "0.3.4" actix-server = { version = "0.4.3", features=["ssl"] } brotli2 = { version="0.3.2" }