File tree 3 files changed +11
-1
lines changed
matrix-sdk-crypto-ffi/src 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 5
5
6
6
#![ warn( missing_docs) ]
7
7
#![ allow( unused_qualifications) ]
8
+ // Triggers false positives.
9
+ // See <https://github.com/rust-lang/rust-clippy/issues/10319>.
10
+ #![ allow( clippy:: extra_unused_type_parameters) ]
8
11
9
12
mod backup_recovery_key;
10
13
mod device;
Original file line number Diff line number Diff line change 15
15
#![ doc = include_str ! ( "../README.md" ) ]
16
16
#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
17
17
#![ warn( missing_docs, missing_debug_implementations) ]
18
- #![ allow( clippy:: drop_non_drop) ] // triggered by wasm_bindgen code
18
+ // triggered by wasm_bindgen code
19
+ #![ allow( clippy:: drop_non_drop) ]
20
+ // Triggers false positives.
21
+ // See <https://github.com/rust-lang/rust-clippy/issues/10319>.
22
+ #![ allow( clippy:: extra_unused_type_parameters) ]
19
23
20
24
pub mod attachment;
21
25
pub mod device;
Original file line number Diff line number Diff line change 1
1
// TODO: target-os conditional would be good.
2
2
3
3
#![ allow( unused_qualifications) ]
4
+ // Triggers false positives.
5
+ // See <https://github.com/rust-lang/rust-clippy/issues/10319>.
6
+ #![ allow( clippy:: extra_unused_type_parameters) ]
4
7
5
8
macro_rules! unwrap_or_clone_arc_into_variant {
6
9
(
You can’t perform that action at this time.
0 commit comments