1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-29 00:07:48 +02:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Nikolay Kim
605a947c3e update version 2019-01-13 10:06:54 -08:00
Nikolay Kim
31f0a96c20 Upgrade trust-dns-proto 2019-01-13 10:03:33 -08:00
Nikolay Kim
66a7c59aaf fix changelog 2019-01-11 21:42:13 -08:00
3 changed files with 10 additions and 5 deletions

View File

@@ -1,5 +1,10 @@
# Changes
## [0.1.1] - 2019-01-13
* Upgrade trust-dns-proto
## [0.1.0] - 2018-12-09
* Move server to separate crate

View File

@@ -1,6 +1,6 @@
[package]
name = "actix-connector"
version = "0.1.0"
version = "0.1.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix Connector - tcp connector service"
keywords = ["network", "framework", "async", "futures"]
@@ -32,8 +32,8 @@ actix-codec = "0.1.0"
actix-rt = "0.1.0"
futures = "0.1"
tokio-tcp = "0.1"
trust-dns-proto = "^0.5.0"
trust-dns-resolver = "^0.10.0"
trust-dns-proto = "0.6.2"
trust-dns-resolver = "0.10.2"
# openssl
openssl = { version="0.10", optional = true }

View File

@@ -2,14 +2,14 @@
## [0.1.4] - 2019-01-11
## Changed
### Changed
* Use `FnMut` instead of `Fn` for `FnService`
## [0.1.3] - 2018-12-12
## Changed
### Changed
* Split service combinators to separate trait