rusty_express 0.4.3

A simple http server library written in Rust and provide Express-alike APIs. We know that Rust is hard and daunting, so we will make sure your server can be easy to use without fear!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod scheduler;
mod trie;

#[cfg(feature = "logger")]
pub mod logger;
#[cfg(feature = "session")]
pub mod session;

pub(crate) mod common;
pub(crate) mod debug;
pub(crate) mod shared_pool {
    pub(crate) use crate::support::scheduler::{close, initialize_with, run};
}

pub(crate) use self::scheduler::{TaskType, ThreadPool, TimeoutPolicy};
pub(crate) use self::trie::{Field, RouteTrie};