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 22
33#![ no_std]
44#![ no_main]
5+ // TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
6+ #![ expect( clippy:: uninlined_format_args, mismatched_lifetime_syntaxes) ]
57
68#[ macro_use]
79extern crate log;
Original file line number Diff line number Diff line change 244244 unsafe_op_in_unsafe_fn,
245245 unused
246246) ]
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+ ) ]
247253
248254#[ cfg( feature = "alloc" ) ]
249255extern crate alloc;
Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: MIT OR Apache-2.0
22
3+ // TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
4+ #![ expect( clippy:: collapsible_if) ]
5+
36mod arch;
47mod cargo;
58mod check_raw;
You can’t perform that action at this time.
0 commit comments