summaryrefslogtreecommitdiff
path: root/exes/rest/src
diff options
context:
space:
mode:
Diffstat (limited to 'exes/rest/src')
-rw-r--r--exes/rest/src/handler.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exes/rest/src/handler.rs b/exes/rest/src/handler.rs
index 3d47935..5e5425e 100644
--- a/exes/rest/src/handler.rs
+++ b/exes/rest/src/handler.rs
@@ -1,6 +1,6 @@
use anyhow::{bail, Context};
-use futures_util::FutureExt;
-use http::{
+use futures_util::future::FutureExt;
+use hyper::http::{
header::{AUTHORIZATION, CONNECTION, HOST, TRANSFER_ENCODING, UPGRADE},
HeaderValue, Method as HttpMethod, Request, Response, Uri,
};