Skip to content

Commit 4eabf39

Browse files
committed
set min versions for actix and trust-dns
1 parent e32961a commit 4eabf39

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changes
22

3+
## [0.1.1] - 2018-10-10
4+
5+
### Changed
6+
7+
- Set actix min version - 0.7.5
8+
9+
- Set trust-dns min version
10+
11+
312
## [0.1.0] - 2018-10-08
413

514
* Initial impl

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-net"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
55
description = "Actix net - framework for the compisible network services for Rust (experimental)"
66
readme = "README.md"
@@ -39,7 +39,7 @@ rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"]
3939
cell = []
4040

4141
[dependencies]
42-
actix = "0.7.0"
42+
actix = "^0.7.5"
4343

4444
log = "0.4"
4545
num_cpus = "1.0"
@@ -58,7 +58,8 @@ tokio-timer = "0.2"
5858
tokio-reactor = "0.1"
5959
tokio-current-thread = "0.1"
6060
tower-service = "0.1"
61-
trust-dns-resolver = "0.10.0-alpha.2"
61+
trust-dns-proto = "^0.5.0-alpha.3"
62+
trust-dns-resolver = "^0.10.0-alpha.3"
6263

6364
# native-tls
6465
native-tls = { version="0.2", optional = true }

0 commit comments

Comments
 (0)