Skip to main content

mash_up/
lib.rs

1//! `mash-up` is a Rust library that provides the dependencies for building web apps
2//! using the MASH stack: Maud, Axum, SQLx, and HTMX. Instead of managing these
3//! dependencies manually, you can simply include this crate in your project to
4//! import all the necessary dependencies for web development.
5
6pub fn placeholder() {
7    // This is just a placeholder to make the crate compile.
8}
9