1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#![forbid(unsafe_code)]
#![cfg_attr(not(debug_assertions), deny(warnings))] // Forbid warnings in release builds
#![warn(clippy::all, rust_2018_idioms)]
mod theme;
pub use theme::EguiTheme;
#[cfg(test)]
mod tests;
include!(concat!(env!("OUT_DIR"), "/generated/meta.rs"));
const DEFAULT_FONTS: [&str; 4] = [
"Hack",
"Ubuntu-Light",
"NotoEmoji-Regular",
"emoji-icon-font",
];