Clippy warnings (#305)

This commit is contained in:
Nikolay Kim 2024-03-06 20:33:20 +06:00
parent 68e158d877
commit 661c5ea1fa
62 changed files with 103 additions and 110 deletions

View file

@ -1,4 +1,5 @@
#![deny(warnings, rust_2018_idioms)]
#![allow(clippy::unnecessary_mut_passed)]
use ntex_bytes::{Buf, Bytes, BytesMut};

View file

@ -1,3 +1,4 @@
#![allow(clippy::op_ref, clippy::let_underscore_future)]
use std::{borrow::Borrow, borrow::BorrowMut, task::Poll};
use ntex_bytes::{Buf, BufMut, Bytes, BytesMut, BytesVec, Pool, PoolId, PoolRef};