File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -174,3 +174,6 @@ serde_path_to_error = "0.1"
174
174
[package .metadata .docs .rs ]
175
175
rustdoc-args = [" --cfg" , " docsrs" ]
176
176
all-features = true
177
+
178
+ [lints .rust ]
179
+ unexpected_cfgs = { level = " warn" , check-cfg = [' cfg(mongodb_internal_tracking_arc)' ] }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use crate::{
9
9
///
10
10
/// If an additional error occurred that was not the result of an individual write failing or a
11
11
/// write concern error, it can be retrieved by calling [`source`](core::error::Error::source) on
12
- /// the [`Error`](crate::error::Error) in which this value is stored.
12
+ /// the [`Error`](struct@ crate::error::Error) in which this value is stored.
13
13
#[ derive( Clone , Debug , Default ) ]
14
14
#[ non_exhaustive]
15
15
pub struct BulkWriteError {
Original file line number Diff line number Diff line change 3
3
#![ warn( rustdoc:: missing_crate_level_docs) ]
4
4
#![ warn( clippy:: cast_possible_truncation) ]
5
5
#![ warn( clippy:: cast_possible_wrap) ]
6
- #![ cfg_attr(
7
- feature = "clippy" ,
8
- allow(
9
- clippy:: unreadable_literal,
10
- clippy:: cognitive_complexity,
11
- clippy:: float_cmp,
12
- clippy:: match_like_matches_macro,
13
- clippy:: derive_partial_eq_without_eq
14
- )
6
+ #![ allow(
7
+ clippy:: unreadable_literal,
8
+ clippy:: cognitive_complexity,
9
+ clippy:: float_cmp,
10
+ clippy:: match_like_matches_macro,
11
+ clippy:: derive_partial_eq_without_eq
15
12
) ]
16
13
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
17
14
#![ cfg_attr( test, type_length_limit = "80000000" ) ]
You can’t perform that action at this time.
0 commit comments