File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#![ no_std]
4
4
#![ no_main]
5
+ // TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
6
+ #![ expect( clippy:: uninlined_format_args, mismatched_lifetime_syntaxes) ]
5
7
6
8
#[ macro_use]
7
9
extern crate log;
Original file line number Diff line number Diff line change 244
244
unsafe_op_in_unsafe_fn,
245
245
unused
246
246
) ]
247
+ // TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
248
+ #![ expect(
249
+ clippy:: uninlined_format_args,
250
+ clippy:: unnecessary_unwrap,
251
+ mismatched_lifetime_syntaxes
252
+ ) ]
247
253
248
254
#[ cfg( feature = "alloc" ) ]
249
255
extern crate alloc;
Original file line number Diff line number Diff line change 1
1
// SPDX-License-Identifier: MIT OR Apache-2.0
2
2
3
+ // TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
4
+ #![ expect( clippy:: collapsible_if) ]
5
+
3
6
mod arch;
4
7
mod cargo;
5
8
mod check_raw;
You can’t perform that action at this time.
0 commit comments