roadster 0.8.1

A "Batteries Included" web framework for rust designed to get you moving fast.
Documentation
1
2
3
4
5
6
7
8
9
10
// Keep private for now
#[cfg(all(feature = "db-sql", feature = "testing"))]
pub(crate) mod db;
pub mod empty;
#[cfg(feature = "worker-sidekiq")]
pub(crate) mod redis;
pub mod regex;
pub mod serde;
pub mod tracing;
pub mod types;