diff --git a/src/main.rs b/src/main.rs
index 8ebf170..d255d45 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -113,8 +113,6 @@ fn is_header_allowed(header: &str) -> bool {
header,
"host"
| "authorization"
- | "origin"
- | "referer"
| "cookie"
| "etag"
| "content-length"
diff --git a/src/utils.rs b/src/utils.rs
index 5f733d5..3314be2 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -1,4 +1,3 @@
-use once_cell::sync::Lazy;
use qstring::QString;
use reqwest::Url;
use std::borrow::Cow;
@@ -6,10 +5,13 @@ use std::collections::BTreeMap;
use std::env;
#[cfg(feature = "prefix-path")]
-static PREFIX_PATH: Lazy