Skip to content

Commit f3423e6

Browse files
committed
scraper: ignore clippy warning
It wants us to break up this declaration but let's just ignore it for now. ``` error: very complex type used. Consider factoring parts into `type` definitions --> fcos-graph-builder/src/scraper.rs:105:10 | 105 | ) -> impl Future< | __________^ 106 | | Output = Result<(HashMap<String, graph::Graph>, HashMap<String, graph::Graph>), Error>, 107 | | > { | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_complexity = note: `-D clippy::type-complexity` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::type_complexity)]` ```
1 parent 29d85f9 commit f3423e6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fcos-graph-builder/src/scraper.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ impl Scraper {
100100
}
101101

102102
/// Combine release-index and updates metadata.
103+
#[allow(clippy::type_complexity)]
103104
fn assemble_graphs(
104105
&self,
105106
) -> impl Future<

0 commit comments

Comments
 (0)