Skip to content

Commit

Permalink
Update tokio-rustls requirement from 0.12.1 to 0.14.0 (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot-preview[bot] committed Aug 26, 2020
1 parent 382544d commit 86362f8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/hello_world_tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2018"

[dependencies]
gotham = { path = "../../gotham" }

tokio-rustls = "0.14"
mime = "0.3"
futures-rustls = { git = "https://github.com/quininer/tokio-rustls", branch = "futures-rustls" }

4 changes: 2 additions & 2 deletions examples/hello_world_tls/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//! A Hello World example application for working with Gotham.
use futures_rustls::rustls::{
use std::io::BufReader;
use tokio_rustls::rustls::{
self,
internal::pemfile::{certs, pkcs8_private_keys},
NoClientAuth,
};
use std::io::BufReader;

use gotham::state::State;

Expand Down
2 changes: 1 addition & 1 deletion gotham/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ http = "0.2"
httpdate = "0.3"
failure = "0.1"
itertools = "0.9.0"
tokio-rustls = { version = "0.12.1", optional = true }
tokio-rustls = { version = "0.14.0", optional = true }

[dev-dependencies]
gotham_derive = { path = "../gotham_derive" }
Expand Down

0 comments on commit 86362f8

Please sign in to comment.