"and if you dont want to always..." <- > <@vollbrecht:matrix.org> and if you dont want to always deny warnings you can use "cfg_atr" for example like this > ```rust > #[cfg_attr(feature = "warnings-to-errors", deny(warnings))] > ``` > > and just define that feature flag in your Cargo.toml The problem with this is that I would need to add it to all examples too, and remember it for new packages. With the env variable it's set once and done