File tree Expand file tree Collapse file tree 10 files changed +1
-18
lines changed
Expand file tree Collapse file tree 10 files changed +1
-18
lines changed Original file line number Diff line number Diff line change 1010 non_snake_case,
1111 clippy:: ptr_as_ptr,
1212 clippy:: undocumented_unsafe_blocks,
13- clippy:: cast_lossless,
1413 missing_debug_implementations,
1514 clippy:: tests_outside_test_module
1615) ]
Original file line number Diff line number Diff line change 77
88pub mod hyperv;
99pub mod hyperv_tlfs;
10- #[ allow( non_camel_case_types) ]
11- #[ allow( non_upper_case_globals) ]
1210pub mod mpspec;
13- # [ allow ( non_upper_case_globals ) ]
11+
1412pub mod msr_index;
1513pub mod perf_event;
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ pub mod msr;
1818/// Logic for configuring x86_64 registers.
1919pub mod regs;
2020
21- #[ allow( clippy:: all) ]
2221#[ allow( missing_docs) ]
2322pub mod gen;
2423
Original file line number Diff line number Diff line change 11// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4- #![ warn( missing_docs) ]
5-
64//! Provides helper logic for parsing and writing protocol data units, and minimalist
75//! implementations of a TCP listener, a TCP connection, and an HTTP/1.1 server.
86pub mod pdu;
Original file line number Diff line number Diff line change 11// Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4- #![ warn( missing_docs) ]
5-
64#[ allow( clippy:: undocumented_unsafe_blocks) ]
75mod gen;
86pub mod operation;
Original file line number Diff line number Diff line change 11// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4- #![ warn( missing_docs) ]
5-
64//! Crate that implements Firecracker specific functionality as far as logging and metrics
75//! collecting.
86
Original file line number Diff line number Diff line change 11// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4- #![ warn( missing_docs) ]
5-
64use std:: os:: unix:: io:: { AsRawFd , RawFd } ;
75use std:: time:: { Duration , Instant } ;
86use std:: { fmt, io} ;
Original file line number Diff line number Diff line change 11// Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4- #![ warn( missing_docs) ]
5-
64//! Provides serialization and deserialization facilities and implements a persistent storage
75//! format for Firecracker state snapshots.
86//!
Original file line number Diff line number Diff line change 11// Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4- #![ allow( clippy:: undocumented_unsafe_blocks) ]
5-
64use std:: os:: unix:: fs:: FileExt ;
75use std:: os:: unix:: io:: AsRawFd ;
86use std:: thread;
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ function fc-bindgen {
3333 non_snake_case,
3434 clippy::ptr_as_ptr,
3535 clippy::undocumented_unsafe_blocks,
36- clippy::cast_lossless,
3736 missing_debug_implementations,
3837 clippy::tests_outside_test_module
3938)]
You can’t perform that action at this time.
0 commit comments