Move to hyper 0.13.1!!!!

This commit is contained in:
Glenn Griffin
2019-12-17 16:00:31 -08:00
parent 348a59d96e
commit 9238153723
14 changed files with 40 additions and 72 deletions

View File

@@ -41,7 +41,7 @@ async fn create_device_flow_auth() -> Authenticator<HttpsConnector<HttpConnector
pi: &'a DeviceAuthResponse,
) -> Pin<Box<dyn Future<Output = ()> + 'a + Send>> {
assert_eq!("https://example.com/verify", pi.verification_uri);
Box::pin(futures::future::ready(()))
Box::pin(async {})
}
}