mirror of https://github.com/fafhrd91/actix-net
13 lines
346 B
Rust
13 lines
346 B
Rust
//! Various network related services and utilities for the Actix ecosystem.
|
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
#![allow(clippy::type_complexity)]
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
|
|
extern crate alloc;
|
|
|
|
pub mod counter;
|
|
pub mod future;
|
|
pub mod timeout;
|