Skip to content

Commit 453706e

Browse files
committed
Adhere to unchecked-duration-subtraction lint rename
Recent versions of Rust have renamed the unchecked-duration-subtraction lint to unchecked-time-subtraction. Adhere to this rename to silence any warnings pertaining the usage of the former. Signed-off-by: Daniel Müller <deso@posteo.net>
1 parent 96e689d commit 453706e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ doc-markdown = "warn"
4646
join-absolute-paths = "warn"
4747
large-enum-variant = "warn"
4848
redundant-closure-for-method-calls = "warn"
49-
unchecked-duration-subtraction = "warn"
49+
unchecked-time-subtraction = "warn"
5050
uninlined-format-args = "warn"
5151
use-self = "warn"
5252
wildcard-imports = "warn"

0 commit comments

Comments
 (0)