mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
18 lines
377 B
Rust
18 lines
377 B
Rust
//! Utility for async runtime abstraction
|
|
#![deny(rust_2018_idioms, unreachable_pub, missing_debug_implementations)]
|
|
|
|
mod compat;
|
|
pub mod connect;
|
|
|
|
pub use ntex_io::Io;
|
|
pub use ntex_rt::{spawn, spawn_blocking};
|
|
|
|
pub use self::compat::*;
|
|
|
|
#[cfg(all(
|
|
feature = "default-rt",
|
|
not(feature = "tokio"),
|
|
not(feature = "async-std"),
|
|
not(feature = "compio")
|
|
))]
|
|
mod rt;
|