From 896c372cfead75f7c6bcca9a11ea9eb981461d88 Mon Sep 17 00:00:00 2001 From: strawberry Date: Sun, 17 Mar 2024 23:02:21 -0400 Subject: [PATCH] disable broken assertions_on_result_states lint Signed-off-by: strawberry --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 56087707..7cb14f50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -471,7 +471,10 @@ wildcard_dependencies = "warn" or_fun_call = "warn" unnecessary_lazy_evaluations = "warn" # as_conversions = "warn" -assertions_on_result_states = "warn" + +# seems to be broken +#assertions_on_result_states = "warn" + default_union_representation = "warn" deref_by_slicing = "warn" empty_drop = "warn"