mirror of
https://github.com/actix/actix-web.git
synced 2024-12-20 23:26:44 +00:00
prepare actix-http release
This commit is contained in:
parent
3b2e78db47
commit
b92eafb839
3 changed files with 7 additions and 8 deletions
|
@ -67,11 +67,11 @@ rustls = ["rust-tls", "actix-tls/rustls", "awc/rustls"]
|
|||
|
||||
[dependencies]
|
||||
actix-codec = "0.2.0-alpha.3"
|
||||
actix-service = "1.0.0-alpha.3"
|
||||
actix-service = "1.0.0-alpha.4"
|
||||
actix-utils = "1.0.0-alpha.3"
|
||||
actix-router = "0.2.0"
|
||||
actix-rt = "1.0.0-alpha.3"
|
||||
actix-server = "1.0.0-alpha.3"
|
||||
actix-server = "1.0.0-alpha.4"
|
||||
actix-testing = "1.0.0-alpha.3"
|
||||
actix-threadpool = "0.3.0"
|
||||
actix-tls = { version = "1.0.0-alpha.3" }
|
||||
|
@ -127,6 +127,3 @@ actix-session = { path = "actix-session" }
|
|||
actix-files = { path = "actix-files" }
|
||||
actix-multipart = { path = "actix-multipart" }
|
||||
awc = { path = "awc" }
|
||||
|
||||
actix-service = { git = "https://github.com/actix/actix-net.git" }
|
||||
actix-server = { git = "https://github.com/actix/actix-net.git" }
|
|
@ -1,5 +1,7 @@
|
|||
# Changes
|
||||
|
||||
## [1.0.0-alpha.4] - 2019-12-08
|
||||
|
||||
### Added
|
||||
|
||||
* Add impl ResponseBuilder for Error
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "actix-http"
|
||||
version = "1.0.0-alpha.3"
|
||||
version = "1.0.0-alpha.4"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Actix http primitives"
|
||||
readme = "README.md"
|
||||
|
@ -44,7 +44,7 @@ fail = ["failure"]
|
|||
secure-cookies = ["ring"]
|
||||
|
||||
[dependencies]
|
||||
actix-service = "1.0.0-alpha.3"
|
||||
actix-service = "1.0.0-alpha.4"
|
||||
actix-codec = "0.2.0-alpha.3"
|
||||
actix-connect = "1.0.0-alpha.3"
|
||||
actix-utils = "1.0.0-alpha.3"
|
||||
|
@ -92,7 +92,7 @@ flate2 = { version="1.0.7", optional = true, default-features = false }
|
|||
failure = { version = "0.1.5", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
actix-server = { version = "1.0.0-alpha.3" }
|
||||
actix-server = { version = "1.0.0-alpha.4" }
|
||||
actix-connect = { version = "1.0.0-alpha.3", features=["openssl"] }
|
||||
actix-http-test = { version = "1.0.0-alpha.3", features=["openssl"] }
|
||||
actix-tls = { version = "1.0.0-alpha.3", features=["openssl"] }
|
||||
|
|
Loading…
Reference in a new issue