mirror of
https://github.com/fafhrd91/actix-net
synced 2025-02-12 15:45:33 +01:00
13 lines
323 B
Rust
13 lines
323 B
Rust
//! Actix utils - various helper services
|
|
|
|
#![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")]
|
|
|
|
pub mod counter;
|
|
pub mod dispatcher;
|
|
pub mod mpsc;
|
|
pub mod task;
|
|
pub mod timeout;
|