rustimate_assets/
lib.rs

1#![forbid(unsafe_code)]
2#![doc(html_favicon_url = "https://raw.githubusercontent.com/kyleu/rustimate/master/crates/assets/embed/favicon.ico")]
3#![doc(html_logo_url = "https://raw.githubusercontent.com/kyleu/rustimate/master/crates/assets/embed/favicon.png")]
4#![doc(issue_tracker_base_url = "https://github.com/kyleu/rustimate/issues/")]
5
6//! `rustimate-assets` contains embedded static files intended to be served from the web application.
7
8use rust_embed::RustEmbed;
9
10/// Embeds assets from `./embed`, providing static files for the web app
11#[derive(RustEmbed)]
12#[folder = "$CARGO_MANIFEST_DIR/embed"]
13pub struct Asset;