1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 20:57:43 +02:00

prepare utils release 3.0.0-beta.1

This commit is contained in:
Rob Ede
2020-12-28 03:32:28 +00:00
parent e4a44b77e6
commit a09f9abfcb
5 changed files with 77 additions and 148 deletions

View File

@ -1,4 +1,4 @@
//! Actix utils - various helper services
//! Various network related services and utilities for the Actix ecosystem.
#![deny(rust_2018_idioms, nonstandard_style)]
#![allow(clippy::type_complexity)]

View File

@ -1,4 +1,5 @@
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
use core::any::Any;
use core::cell::RefCell;
use core::fmt;

View File

@ -1,7 +1,6 @@
//! Service that applies a timeout to requests.
//!
//! If the response does not complete within the specified timeout, the response
//! will be aborted.
//! If the response does not complete within the specified timeout, the response will be aborted.
use core::future::Future;
use core::marker::PhantomData;