aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2024-06-09 22:38:45 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2024-06-09 22:38:45 +0000
commitaed776ac49cb44705463d9e43c070dc56adaaae3 (patch)
tree98c318fd6f9e2718dd3eb634e9477d6151674d85 /src/config.rs
parentBump deps (diff)
downloadminiserve-aed776ac49cb44705463d9e43c070dc56adaaae3.tar.gz
miniserve-aed776ac49cb44705463d9e43c070dc56adaaae3.zip
Remove explicit dependency on http
We now use the one supplied by actix-web.
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 3643502..5a0037b 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -5,8 +5,8 @@ use std::{
path::PathBuf,
};
+use actix_web::http::header::HeaderMap;
use anyhow::{anyhow, Context, Result};
-use http::HeaderMap;
#[cfg(feature = "tls")]
use rustls_pemfile as pemfile;