aboutsummaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
Diffstat (limited to 'src/context')
-rw-r--r--src/context/error.rs1
-rw-r--r--src/context/hook.rs1
-rw-r--r--src/context/route.rs1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/context/error.rs b/src/context/error.rs
index 3b3fd5e..eb1e00e 100644
--- a/src/context/error.rs
+++ b/src/context/error.rs
@@ -20,6 +20,7 @@ use openssl::x509::X509;
use tokio::net::TcpStream;
use url::Url;
+#[allow(clippy::module_name_repetitions)]
pub struct ErrorContext<'a> {
pub tcp: &'a TcpStream,
pub url: &'a Url,
diff --git a/src/context/hook.rs b/src/context/hook.rs
index 00cd9d8..44804fa 100644
--- a/src/context/hook.rs
+++ b/src/context/hook.rs
@@ -21,6 +21,7 @@ use openssl::x509::X509;
use tokio::net::TcpStream;
use url::Url;
+#[allow(clippy::module_name_repetitions)]
pub struct HookContext<'a> {
pub tcp: &'a TcpStream,
pub url: &'a Url,
diff --git a/src/context/route.rs b/src/context/route.rs
index beaf45f..61eca0c 100644
--- a/src/context/route.rs
+++ b/src/context/route.rs
@@ -21,6 +21,7 @@ use openssl::x509::X509;
use tokio::net::TcpStream;
use url::Url;
+#[allow(clippy::module_name_repetitions)]
pub struct RouteContext<'a> {
pub tcp: &'a TcpStream,
pub url: &'a Url,