Skip to content

Commit 4ca16f9

Browse files
rustversion 1.0.22 turns off incompatible_msrv automatically (#3889)
1 parent 7955547 commit 4ca16f9

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/yew-macro/src/html_tree/html_element.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -457,11 +457,8 @@ impl ToTokens for HtmlElement {
457457
#[rustversion::since(1.88)]
458458
fn derive_debug_tag(vtag: &Ident) -> String {
459459
let span = vtag.span().unwrap();
460-
#[allow(clippy::incompatible_msrv)]
461-
{
462460
// the file, line, column methods are stable since 1.88
463461
format!("[{}:{}:{}] ", span.file(), span.line(), span.column())
464-
}
465462
}
466463
#[rustversion::before(1.88)]
467464
fn derive_debug_tag(_: &Ident) -> &'static str {

0 commit comments

Comments
 (0)