diff --git a/src/config.rs b/src/config.rs index e4d197a4..8c63251d 100644 --- a/src/config.rs +++ b/src/config.rs @@ -14,7 +14,7 @@ mod proxy; use proxy::ProxyConfig; #[allow(clippy::struct_excessive_bools)] -#[derive(Clone, Debug, Deserialize)] +#[derive(Debug, Deserialize)] pub(crate) struct Config { #[serde(default = "false_fn")] pub(crate) conduit_compat: bool, @@ -89,7 +89,7 @@ pub(crate) struct Config { pub(crate) catchall: BTreeMap, } -#[derive(Clone, Debug, Deserialize)] +#[derive(Debug, Deserialize)] pub(crate) struct TlsConfig { pub(crate) certs: String, pub(crate) key: String,