Skip to content

Commit

Permalink
set min versions for actix and trust-dns
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Oct 10, 2018
1 parent e32961a commit 4eabf39
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changes

## [0.1.1] - 2018-10-10

### Changed

- Set actix min version - 0.7.5

- Set trust-dns min version


## [0.1.0] - 2018-10-08

* Initial impl
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-net"
version = "0.1.0"
version = "0.1.1"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix net - framework for the compisible network services for Rust (experimental)"
readme = "README.md"
Expand Down Expand Up @@ -39,7 +39,7 @@ rust-tls = ["rustls", "tokio-rustls", "webpki", "webpki-roots"]
cell = []

[dependencies]
actix = "0.7.0"
actix = "^0.7.5"

log = "0.4"
num_cpus = "1.0"
Expand All @@ -58,7 +58,8 @@ tokio-timer = "0.2"
tokio-reactor = "0.1"
tokio-current-thread = "0.1"
tower-service = "0.1"
trust-dns-resolver = "0.10.0-alpha.2"
trust-dns-proto = "^0.5.0-alpha.3"
trust-dns-resolver = "^0.10.0-alpha.3"

# native-tls
native-tls = { version="0.2", optional = true }
Expand Down

0 comments on commit 4eabf39

Please sign in to comment.