#![forbid(unsafe_code)] #![cfg_attr(not(debug_assertions), deny(warnings))] // Forbid warnings in release builds #![warn(clippy::all)] // When compiling natively: fn main() { let app = egui_demo_lib::DemoApp::default(); eframe::run_native(Box::new(app)); }