mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 14:34:19 +00:00
6 lines
261 B
TOML
6 lines
261 B
TOML
|
disallowed-methods = [
|
||
|
# It is *much* too easy to misread `x.min(y)` as "x should be *at least* y" when in fact it
|
||
|
# means the *exact* opposite, and same with `x.max(y)`; use `cmp::{min, max}` instead.
|
||
|
"core::cmp::Ord::min", "core::cmp::Ord::max"
|
||
|
]
|