add lints

This commit is contained in:
griffi-gh 2024-05-03 01:48:12 +02:00
parent 656f124549
commit ec592951bc

View file

@ -1,8 +1,14 @@
//TODO move lints to workspace Cargo.toml
#![allow( #![allow(
clippy::too_many_arguments, // allowed because systems often need a lot of argumentss clippy::too_many_arguments, // allowed because systems often need a lot of argumentss
clippy::enum_variant_names, clippy::enum_variant_names,
clippy::type_complexity clippy::type_complexity
)] )]
#![forbid(
static_mut_refs,
unsafe_op_in_unsafe_fn,
rust_2024_compatibility,
)]
use shipyard::{ use shipyard::{
World, Workload, IntoWorkload, World, Workload, IntoWorkload,