Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bluejekyll committed Mar 10, 2017
1 parent 503bb04 commit 7120b2f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 40 deletions.
55 changes: 24 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Expand Up @@ -2,10 +2,10 @@
members = ["client", "server"]

[replace]
"openssl:0.9.7" = { git = "https://github.com/sfackler/rust-openssl.git", features = ["v102", "v110"] }
#"openssl:0.9.7" = { path = "../rust-openssl/openssl", features = ["v102", "v110"] }
"openssl-sys:0.9.7" = { git = "https://github.com/sfackler/rust-openssl.git", features = ["v102", "v110"] }
#"openssl-sys:0.9.7" = { path = "../rust-openssl/openssl-sys", features = ["v102", "v110"] }
#"openssl:0.9.8" = { git = "https://github.com/sfackler/rust-openssl.git", features = ["v102", "v110"] }
#"openssl:0.9.8" = { path = "../rust-openssl/openssl", features = ["v102", "v110"] }
#"openssl-sys:0.9.8" = { git = "https://github.com/sfackler/rust-openssl.git", features = ["v102", "v110"] }
#"openssl-sys:0.9.8" = { path = "../rust-openssl/openssl-sys", features = ["v102", "v110"] }
#"native-tls:0.1.1" = { path = "../rust-native-tls" }
#"security-framework:0.1.10" = { git = "https://github.com/sfackler/rust-security-framework.git" }
#"security-framework-sys:0.1.10" = { git = "https://github.com/sfackler/rust-security-framework.git" }
4 changes: 2 additions & 2 deletions client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.9.3"
version = "0.10.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

# A short blurb about the package. This is not rendered in any format when
Expand Down Expand Up @@ -56,7 +56,7 @@ futures = "^0.1.6"
lazy_static = "^0.2.1"
log = "^0.3.5"
native-tls = { version = "^0.1", optional = true }
openssl = { version = "^0.9.7", features = ["v102", "v110"], optional = true }
openssl = { version = "^0.9.8", features = ["v102", "v110"], optional = true }
rand = "^0.3"
ring = { version = "^0.6", optional = true }
rustc-serialize = "^0.3.18"
Expand Down
6 changes: 3 additions & 3 deletions server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "trust-dns-server"
version = "0.9.3"
version = "0.10.0"
authors = ["Benjamin Fry <benjaminfry@me.com>"]

# A short blurb about the package. This is not rendered in any format when
Expand Down Expand Up @@ -61,15 +61,15 @@ futures = "^0.1.6"
lazy_static = "^0.2.1"
log = "^0.3.5"
native-tls = "^0.1"
openssl = { version = "^0.9.7", features = ["v102", "v110"] }
openssl = { version = "^0.9.8", features = ["v102", "v110"] }
rand = "^0.3"
rustc-serialize = "^0.3.18"
rusqlite = { version = "^0.9.5", features = ["bundled"] }
time = "^0.1"
tokio-core = "^0.1"
tokio-tls = "^0.1"
toml = "^0.1"
trust-dns = { version = "^0.9", path = "../client" }
trust-dns = { version = "^0.10", path = "../client" }

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "^0.1.10"

0 comments on commit 7120b2f

Please sign in to comment.