aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-proxy/src
diff options
context:
space:
mode:
authorYuchen Wu <[email protected]>2024-07-26 10:23:14 -0700
committerYuchen Wu <[email protected]>2024-07-26 13:35:13 -0700
commit32303b9258fed5ce7d214515bddb2b7a0585fbe0 (patch)
tree5c51cf1f2f298c8bd212cf37a2d37b1ad73c3380 /pingora-proxy/src
parentff2582a64a5926c7ad0909f3c26b9da9ce578ba4 (diff)
downloadpingora-32303b9258fed5ce7d214515bddb2b7a0585fbe0.tar.gz
pingora-32303b9258fed5ce7d214515bddb2b7a0585fbe0.zip
Address Rust 1.80 clippy warnings.
Also remove the doc_async_trait cfg since it is no longer viable.
Diffstat (limited to 'pingora-proxy/src')
-rw-r--r--pingora-proxy/src/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/pingora-proxy/src/lib.rs b/pingora-proxy/src/lib.rs
index a02b23f..eebf65d 100644
--- a/pingora-proxy/src/lib.rs
+++ b/pingora-proxy/src/lib.rs
@@ -35,9 +35,6 @@
//!
//! See `examples/load_balancer.rs` for a detailed example.
-// enable nightly feature async trait so that the docs are cleaner
-#![cfg_attr(doc_async_trait, feature(async_fn_in_trait))]
-
use async_trait::async_trait;
use bytes::Bytes;
use futures::future::FutureExt;