From 8dfe42e846ac18eef21928f69071e03f8b7e42c8 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 16 Dec 2019 21:56:05 +0100 Subject: [PATCH] Fix client impl bounds --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 84a95dd0..d550bca0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -172,7 +172,7 @@ impl HttpsClient { impl Client where - C: hyper::client::connect::Connect, + C: hyper::client::connect::Connect + Clone + Send + Sync + 'static, { /// Creates a new client using the given `hyper::Client`. ///