salvo_core 0.92.2

Salvo is a powerful web framework that can make your work easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Runtime module.
//!
//! Only supports tokio runtime in current version.
//! More runtimes support may be added in future releases.

#[doc(hidden)]
pub use hyper::rt::*;

/// Tokio runtime
pub mod tokio {
    pub use hyper_util::rt::{TokioExecutor, TokioIo};
}