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

Compare commits

...

3 Commits

Author SHA1 Message Date
Nikolay Kim
d38eb00793 no readme 2018-12-11 08:36:03 -08:00
Nikolay Kim
3c9d95bd9f no readme 2018-12-11 08:33:28 -08:00
Nikolay Kim
331db2eb47 use released version 2018-12-11 08:28:44 -08:00
3 changed files with 3 additions and 7 deletions

View File

@@ -3,7 +3,6 @@ name = "actix-connector"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix Connector - tcp connector service"
readme = "README.md"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
@@ -30,10 +29,9 @@ ssl = ["openssl", "tokio-openssl"]
[dependencies]
actix-service = "0.1.1"
actix-codec = "0.1.0"
actix-rt = { path = "../actix-rt" }
actix-rt = "0.1.0"
futures = "0.1"
tokio-tcp = "0.1"
trust-dns-proto = "^0.5.0"
trust-dns-resolver = "^0.10.0"

View File

@@ -3,7 +3,6 @@ name = "actix-server"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix server - General purpose tcp server"
readme = "README.md"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
@@ -35,7 +34,7 @@ rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"]
[dependencies]
actix-service = "0.1.1"
actix-rt = { path = "../actix-rt" }
actix-rt = "0.1.0"
log = "0.4"
num_cpus = "1.0"

View File

@@ -3,7 +3,6 @@ name = "actix-utils"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix utils - various actix net related services"
readme = "README.md"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
@@ -21,7 +20,7 @@ path = "src/lib.rs"
[dependencies]
actix-service = "0.1.1"
actix-codec = "0.1.0"
actix-rt = { path = "../actix-rt" }
actix-rt = "0.1.0"
# io
bytes = "0.4"