slumber_core 5.2.3

Core library for Slumber. Not intended for external use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core frontend-agnostic functionality for Slumber, agnostic of the front end.
//!
//! **This crate is not semver compliant**. The version is locked to the root
//! `slumber` crate version. If you choose to depend directly on this crate, you
//! do so at your own risk of breakage.

pub mod collection;
pub mod database;
pub mod http;
pub mod render;
#[cfg(any(test, feature = "test"))]
pub mod test_util;
pub mod util;