mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
19 lines
484 B
Rust
19 lines
484 B
Rust
//! Utilities for ntex framework
|
|
#![deny(rust_2018_idioms, unreachable_pub, missing_debug_implementations)]
|
|
|
|
#[doc(hidden)]
|
|
#[deprecated]
|
|
pub use std::task::ready;
|
|
|
|
pub mod channel;
|
|
pub mod future;
|
|
pub mod services;
|
|
pub mod task;
|
|
pub mod time;
|
|
|
|
pub use futures_core::Stream;
|
|
pub use futures_sink::Sink;
|
|
pub use ntex_rt::spawn;
|
|
|
|
pub type HashMap<K, V> = std::collections::HashMap<K, V, fxhash::FxBuildHasher>;
|
|
pub type HashSet<V> = std::collections::HashSet<V, fxhash::FxBuildHasher>;
|