1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Only forbid warnings in release builds

This commit is contained in:
Emil Ernerfeldt
2020-12-18 22:19:56 +01:00
parent 0e2c4077cb
commit 71449fe61c
7 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
#![forbid(unsafe_code)]
#![deny(warnings)]
#![cfg_attr(not(debug_assertions), deny(warnings))] // Forbid warnings in release builds
#![warn(clippy::all)]
mod example_app;