derust 0.2.5

Easy way to start your Rust asynchronous application server using Tokio and Axum frameworks.
Documentation
mod axum;
mod config;
mod context;

pub(crate) mod extension;
mod middlewares;

mod health;

mod response;
mod server;
mod tags;

#[cfg(feature = "prometheus")]
mod prometheus;

#[cfg(feature = "growthbook")]
pub use growthbook_sdk_rust::client::*;

pub use config::*;
pub use context::*;
pub use error::*;
pub use response::*;
pub use server::*;
pub use tags::*;