dbui-assets 0.0.64

Embedded web assets for dbui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/kyleu/dbui/master/crates/assets/embed/favicon.ico")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/kyleu/dbui/master/crates/assets/embed/favicon.png")]
#![doc(issue_tracker_base_url = "https://github.com/kyleu/dbui/issues/")]

//! `dbui-assets` contains embedded static files intended to be served from the web application.

use rust_embed::RustEmbed;

/// Embeds assets from `./embed`, providing static files for the web app
#[derive(RustEmbed)]
#[folder = "$CARGO_MANIFEST_DIR/embed"]
pub struct Asset;