File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
matrix-sdk-crypto-ffi/src Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 55
66#![ warn( missing_docs) ]
77#![ 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) ]
811
912mod backup_recovery_key;
1013mod device;
Original file line number Diff line number Diff line change 1515#![ doc = include_str ! ( "../README.md" ) ]
1616#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
1717#![ 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) ]
1923
2024pub mod attachment;
2125pub mod device;
Original file line number Diff line number Diff line change 11// TODO: target-os conditional would be good.
22
33#![ 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) ]
47
58macro_rules! unwrap_or_clone_arc_into_variant {
69 (
You can’t perform that action at this time.
0 commit comments