1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-14 08:50:31 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Nikolay Kim
f1d0d5f6f9 prepare actix-server release 2019-05-12 08:03:16 -07:00
Nikolay Kim
a76fcaf4d8 prepare actix-utils release 2019-05-12 08:00:23 -07:00
3 changed files with 8 additions and 7 deletions

View File

@@ -1,17 +1,18 @@
# Changes # Changes
## [0.5.0] - 2019-05-11 ## [0.5.0] - 2019-05-12
### Added ### Added
* Add `Debug` impl for `SslError` * Add `Debug` impl for `SslError`
* Derive debug for Server and ServerCommand * Derive debug for `Server` and `ServerCommand`
### Changed ### Changed
* Upgrade to actix-service 0.4 * Upgrade to actix-service 0.4
## [0.4.3] - 2019-04-16 ## [0.4.3] - 2019-04-16
### Added ### Added

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "actix-server" name = "actix-server"
version = "0.4.3" version = "0.5.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix server - General purpose tcp server" description = "Actix server - General purpose tcp server"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
@@ -34,7 +34,7 @@ rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots", "actix-server-co
[dependencies] [dependencies]
actix-rt = "0.2.1" actix-rt = "0.2.1"
actix-service = "0.3.4" actix-service = "0.4.0"
actix-server-config = "0.1.1" actix-server-config = "0.1.1"
log = "0.4" log = "0.4"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "actix-utils" name = "actix-utils"
version = "0.3.5" version = "0.4.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix utils - various actix net related services" description = "Actix utils - various actix net related services"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
@@ -18,7 +18,7 @@ name = "actix_utils"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
actix-service = "0.3.3" actix-service = "0.4.0"
actix-codec = "0.1.1" actix-codec = "0.1.1"
bytes = "0.4" bytes = "0.4"
either = "1.5.2" either = "1.5.2"
@@ -28,4 +28,4 @@ tokio-current-thread = "0.1.4"
log = "0.4" log = "0.4"
[dev-dependencies] [dev-dependencies]
actix-rt = "0.2.1" actix-rt = "0.2.2"