online Minecraft written book viewer

chore: cargo fmt

kokirigla.de 02ff7447 b0a5c7d1

verified
+3 -2
+3 -2
src/web/assets.rs
··· 19 19 include_bytes!("assets/font/bold_italic.woff2"); 20 20 21 21 const CSS_STYLES_TEMPLATE: &str = include_str!("assets/stylesheet.css"); 22 - static CSS_STYLES: LazyLock<String> = 23 - LazyLock::new(|| CSS_STYLES_TEMPLATE.replace("__NARA_ASSET_VERSION__", crate::VERSION)); 22 + static CSS_STYLES: LazyLock<String> = LazyLock::new(|| { 23 + CSS_STYLES_TEMPLATE.replace("__NARA_ASSET_VERSION__", crate::VERSION) 24 + }); 24 25 25 26 const WEBP_MIME_TYPE: &str = "image/webp"; 26 27 const WOFF2_MIME_TYPE: &str = "font/woff2";