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 10
10
non_snake_case,
11
11
clippy:: ptr_as_ptr,
12
12
clippy:: undocumented_unsafe_blocks,
13
- clippy:: cast_lossless,
14
13
missing_debug_implementations,
15
14
clippy:: tests_outside_test_module
16
15
) ]
Original file line number Diff line number Diff line change 7
7
8
8
pub mod hyperv;
9
9
pub mod hyperv_tlfs;
10
- #[ allow( non_camel_case_types) ]
11
- #[ allow( non_upper_case_globals) ]
12
10
pub mod mpspec;
13
- # [ allow ( non_upper_case_globals ) ]
11
+
14
12
pub mod msr_index;
15
13
pub mod perf_event;
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ pub mod msr;
18
18
/// Logic for configuring x86_64 registers.
19
19
pub mod regs;
20
20
21
- #[ allow( clippy:: all) ]
22
21
#[ allow( missing_docs) ]
23
22
pub mod gen;
24
23
Original file line number Diff line number Diff line change 1
1
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- #![ warn( missing_docs) ]
5
-
6
4
//! Provides helper logic for parsing and writing protocol data units, and minimalist
7
5
//! implementations of a TCP listener, a TCP connection, and an HTTP/1.1 server.
8
6
pub mod pdu;
Original file line number Diff line number Diff line change 1
1
// Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- #![ warn( missing_docs) ]
5
-
6
4
#[ allow( clippy:: undocumented_unsafe_blocks) ]
7
5
mod gen;
8
6
pub mod operation;
Original file line number Diff line number Diff line change 1
1
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- #![ warn( missing_docs) ]
5
-
6
4
//! Crate that implements Firecracker specific functionality as far as logging and metrics
7
5
//! collecting.
8
6
Original file line number Diff line number Diff line change 1
1
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- #![ warn( missing_docs) ]
5
-
6
4
use std:: os:: unix:: io:: { AsRawFd , RawFd } ;
7
5
use std:: time:: { Duration , Instant } ;
8
6
use std:: { fmt, io} ;
Original file line number Diff line number Diff line change 1
1
// Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- #![ warn( missing_docs) ]
5
-
6
4
//! Provides serialization and deserialization facilities and implements a persistent storage
7
5
//! format for Firecracker state snapshots.
8
6
//!
Original file line number Diff line number Diff line change 1
1
// Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- #![ allow( clippy:: undocumented_unsafe_blocks) ]
5
-
6
4
use std:: os:: unix:: fs:: FileExt ;
7
5
use std:: os:: unix:: io:: AsRawFd ;
8
6
use std:: thread;
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ function fc-bindgen {
33
33
non_snake_case,
34
34
clippy::ptr_as_ptr,
35
35
clippy::undocumented_unsafe_blocks,
36
- clippy::cast_lossless,
37
36
missing_debug_implementations,
38
37
clippy::tests_outside_test_module
39
38
)]
You can’t perform that action at this time.
0 commit comments