Commit f3423e6
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
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
| 103 | + | |
103 | 104 | | |
104 | 105 | | |
105 | 106 | | |
| |||
0 commit comments