From ba2c55d4a2be6a5c539ff3f25774857e2e7977ae Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Sun, 6 Dec 2020 21:42:44 +0100 Subject: [PATCH] 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 --- src/engine/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/engine/mod.rs b/src/engine/mod.rs index 5f5afe8..c2aaa0a 100644 --- a/src/engine/mod.rs +++ b/src/engine/mod.rs @@ -287,11 +287,12 @@ async fn resolve_crate_with_engine( static POPULAR_REPO_BLOCK_LIST: Lazy> = 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::, _>>()