Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into improve-error-han…
Browse files Browse the repository at this point in the history
…dling
  • Loading branch information
msrd0 committed Aug 26, 2020
2 parents b72348d + 86362f8 commit f0811f4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/handlers/multipart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ gotham = { path = "../../../gotham" }

mime = "0.3"
futures = "0.3.1"
multipart = { version = "0.16", default-features = false, features = ["server"] }
multipart = { version = "0.17", default-features = false, features = ["server"] }
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 examples/hello_world_until/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ tokio = { version = "0.2.6", features = ["full"] }
mime = "0.3"

[target.'cfg(unix)'.dev-dependencies]
nix = "0.15"
nix = "0.18"
2 changes: 1 addition & 1 deletion examples/templating/askama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2018"
[dependencies]
gotham = { path = "../../../gotham" }

askama = "0.9.0"
askama = "0.10.3"
mime = "0.3.12"
2 changes: 1 addition & 1 deletion examples/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2018"
[dependencies]
gotham = { path = "../../gotham" }
futures = "0.3.1"
tokio-tungstenite = "0.10"
tokio-tungstenite = "0.11"
tokio = "0.2"
pretty_env_logger = "0.4"
sha1 = "*"
Expand Down
2 changes: 1 addition & 1 deletion gotham/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ http = "0.2"
httpdate = "0.3"
itertools = "0.9.0"
anyhow = "1.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 f0811f4

Please sign in to comment.