next_web_dev/
lib.rs

1pub mod autoconfigure;
2pub mod autoregister;
3pub mod banner;
4pub mod converter;
5pub mod error;
6pub mod event;
7pub mod interceptor;
8pub mod manager;
9pub mod middleware;
10pub mod util;
11pub mod application;
12
13mod tests;
14
15pub use rudi_dev::{Singleton, Transient, SingleOwner, Properties};
16
17#[cfg(feature = "job_scheduler")]
18pub use tokio_cron_scheduler::Job;
19
20#[global_allocator]
21static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;