From 5dab77d4b84b108c55656302835183583e69d9bc Mon Sep 17 00:00:00 2001 From: Werner Seegers Date: Wed, 21 Aug 2019 16:25:05 +0200 Subject: [PATCH 1/2] Update http-service to match rest of tide --- tide-panic/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tide-panic/Cargo.toml b/tide-panic/Cargo.toml index 07e5fad0d..cba7ea51d 100644 --- a/tide-panic/Cargo.toml +++ b/tide-panic/Cargo.toml @@ -11,5 +11,5 @@ repository = "https://github.com/rustasync/tide" [dependencies] futures-preview = "0.3.0-alpha.17" http = "0.1" -http-service = "0.2.0" +http-service = "0.3.0" tide-core = { path = "../tide-core" } From 7a37eb962d96d85e5a818ec290fbf3411dc40594 Mon Sep 17 00:00:00 2001 From: Werner Seegers Date: Wed, 21 Aug 2019 16:25:29 +0200 Subject: [PATCH 2/2] Corrected stable feature warning --- tide-panic/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tide-panic/src/lib.rs b/tide-panic/src/lib.rs index 3174a2a83..22edc12ee 100644 --- a/tide-panic/src/lib.rs +++ b/tide-panic/src/lib.rs @@ -4,7 +4,7 @@ //! Tide's default panic handling is not usable by your application. Before using these you should //! have a good understanding of how the different components involved in [`std::panic`] works. -#![feature(async_await, doc_cfg)] +#![feature(doc_cfg)] #![warn( nonstandard_style, rust_2018_idioms,