9 lines
263 B
Rust
9 lines
263 B
Rust
#![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();
|
|
egui_glium::run(Box::new(app));
|
|
}
|