terrazzo 0.2.0

The Terrazzo library to build dynamic web pages in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod static_assets;

/// Installs assets from the shared library
///
/// i.e. `common.scss` used by the widgets library.
pub fn install_assets() {
    crate::declare_scss_asset!("target/css/common.scss").install();
}

pub use ::axum;
pub use ::http;
pub use ::mime;
#[cfg(all(feature = "server", not(feature = "client")))]
pub use terrazzo_macro::server;