salvo_core 0.56.0

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

pub use hyper::rt::*;

/// Tokio runtimes
pub mod tokio {
    pub use salvo_utils::rt::{TokioExecutor, TokioIo};
}