Update popular repositories blocklist (#85)

* Updates the xi-editor repository url
* Adds https://github.com/996icu/996.ICU
* Updates rustlings repository url

These repositories shouldn't belong to the homepage, since they aren't really
crates and deps.rs fails to analyze them.

This gives space to:

* https://github.com/starship/starship
* https://github.com/SergioBenitez/Rocket
This commit is contained in:
Paolo Barbolini 2020-12-06 21:42:44 +01:00 committed by GitHub
parent 4b227a7836
commit ba2c55d4a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -287,11 +287,12 @@ async fn resolve_crate_with_engine(
static POPULAR_REPO_BLOCK_LIST: Lazy<HashSet<RepoPath>> = Lazy::new(|| {
vec![
RepoPath::from_parts("github", "rust-lang", "rust"),
RepoPath::from_parts("github", "google", "xi-editor"),
RepoPath::from_parts("github", "xi-editor", "xi-editor"),
RepoPath::from_parts("github", "lk-geimfari", "awesomo"),
RepoPath::from_parts("github", "redox-os", "tfs"),
RepoPath::from_parts("github", "carols10cents", "rustlings"),
RepoPath::from_parts("github", "rust-lang", "rustlings"),
RepoPath::from_parts("github", "rust-unofficial", "awesome-rust"),
RepoPath::from_parts("github", "996icu", "996.ICU"),
]
.into_iter()
.collect::<Result<HashSet<_>, _>>()