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
#![warn(rust_2018_idioms, missing_debug_implementations, missing_docs)]
#![warn(clippy::all)]
#![forbid(non_ascii_idents)]
#![forbid(unsafe_code)]
mod application;
pub mod extensions;
pub mod middleware;
#[doc(inline)]
pub use application::*;
pub use axum;
pub use config;
#[cfg(any(feature = "native-tls", feature = "rustls"))]
pub use futures_util;
pub use hyper;
pub use thiserror;
pub use tokio;
pub use tonic;
pub use tower;
pub use tower_http;
pub use tracing;
pub use tracing_subscriber;
pub use valuable;