aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 3464c50cb3eea4c15047837054495b07f26ba526 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#![deny(
  clippy::all,
  clippy::nursery,
  clippy::pedantic,
  future_incompatible,
  nonstandard_style,
  rust_2018_idioms,
  unsafe_code,
  unused,
  warnings
)]
#![doc = include_str!("../README.md")]
#![recursion_limit = "128"]

pub mod context;
pub mod handler;
pub mod module;
#[cfg(feature = "prelude")]
pub mod prelude;
pub mod response;
pub mod router;
pub mod router_option;
pub mod utilities;

#[macro_use]
extern crate log;

#[cfg(feature = "async-std")]
pub use async_std::main;
#[cfg(feature = "tokio")]
pub use tokio::main;