1#![deny(clippy::pedantic)]
3#![allow(
4 clippy::missing_fields_in_debug,
5 clippy::must_use_candidate,
6 clippy::missing_errors_doc
7)]
8
9pub mod channel;
10pub mod future;
11pub mod services;
12pub mod task;
13pub mod time;
14
15pub use futures_core::Stream;
16pub use ntex_rt::spawn;
17
18pub type HashMap<K, V> = std::collections::HashMap<K, V, foldhash::fast::RandomState>;
19pub type HashSet<V> = std::collections::HashSet<V, foldhash::fast::RandomState>;
20pub type HashRandomState = foldhash::fast::RandomState;
21
22#[deprecated(since = "3.5.0", note = "Use ntex-error 1.2")]
23pub mod error {
24 pub use ntex_error::{ErrorMessage, ErrorMessageChained, fmt_err, fmt_err_string};
25}