Replace Alexa overlap by Tranco #6
Annotations
2 warnings
value assigned to `clean_path` is never read:
src/tranco_top1m/mod.rs#L53
warning: value assigned to `clean_path` is never read
--> src/tranco_top1m/mod.rs:53:13
|
53 | clean_path = true;
| ^^^^^^^^^^
|
= help: maybe it is overwritten before being read?
= note: `#[warn(unused_assignments)]` on by default
|
variable `clean_path` is assigned to, but never used:
src/tranco_top1m/mod.rs#L47
warning: variable `clean_path` is assigned to, but never used
--> src/tranco_top1m/mod.rs:47:17
|
47 | let mut clean_path = false;
| ^^^^^^^^^^
|
= note: consider using `_clean_path` instead
= note: `#[warn(unused_variables)]` on by default
|