Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ expect_used = "deny"
too_many_lines = "deny"
unwrap_used = "deny"
wildcard_imports = "deny"
# A diverging `match`/`if let` whose only job is to bind a value or bail out of
# the function reads as boilerplate and buries the happy path. Prefer the
# `let ... else { ... }` form so the binding and its divergence are stated once,
# the bound name stays in the enclosing scope, and the early return is obvious.
manual_let_else = "deny"

[dependencies]
cel-interpreter = "0.10"
Expand Down
Loading