1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 09:49:29 +00:00

update dependencies

This commit is contained in:
Nikolay Kim 2019-04-24 13:00:30 -07:00
parent 2bc937f6c3
commit 5426413cb6
4 changed files with 10 additions and 6 deletions

View file

@ -1,5 +1,7 @@
# Changes
## [1.0.0-beta.2] - 2019-04-24
### Added
* Extend `Responder` trait, allow to override status code and headers.

View file

@ -1,6 +1,6 @@
[package]
name = "actix-web"
version = "1.0.0-beta.1"
version = "1.0.0-beta.2"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
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"

View file

@ -4,6 +4,7 @@
* Allow to send headers in `Camel-Case` form.
## [0.1.1] - 2019-04-19
### Added

View file

@ -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" }