1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-27 18:02:58 +01:00

prepare actix-server release

This commit is contained in:
Nikolay Kim 2019-03-12 16:40:22 -07:00
parent ae9bc5ae78
commit a3c4637372
2 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,12 @@
# Changes # Changes
## [0.4.0] - 2019-03-xx ## [0.4.0] - 2019-03-12
### Changed
* Use `ServerConfig` for service factory
* Wrap tcp socket to `Io` type
* Upgrade actix-service * Upgrade actix-service

View File

@ -1,6 +1,6 @@
[package] [package]
name = "actix-server" name = "actix-server"
version = "0.3.1" version = "0.4.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,8 +34,8 @@ rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"]
[dependencies] [dependencies]
actix-rt = "0.2.1" actix-rt = "0.2.1"
actix-service = "0.3.3" actix-service = "0.3.4"
actix-server-config = { path="../actix-server-config" } actix-server-config = "0.1.0"
log = "0.4" log = "0.4"
num_cpus = "1.0" num_cpus = "1.0"