diff --git a/Cargo.toml b/Cargo.toml index 0c7797a3301..3162e61e541 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -167,7 +167,6 @@ suspicious_operation_groupings = { level = "allow", priority = 1 } use_self = { level = "allow", priority = 1 } while_float = { level = "allow", priority = 1 } needless_pass_by_ref_mut = { level = "allow", priority = 1 } -set_contains_or_insert = { level = "allow", priority = 1 } # cargo-lints: cargo_common_metadata = { level = "allow", priority = 1 } # style-lints: diff --git a/src/graph/breadth_first_search.rs b/src/graph/breadth_first_search.rs index 076d6f11002..4b4875ab721 100644 --- a/src/graph/breadth_first_search.rs +++ b/src/graph/breadth_first_search.rs @@ -34,8 +34,7 @@ pub fn breadth_first_search(graph: &Graph, root: Node, target: Node) -> Option