mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 18:36:30 +00:00
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:
parent
4b227a7836
commit
ba2c55d4a2
1 changed files with 3 additions and 2 deletions
|
@ -287,11 +287,12 @@ async fn resolve_crate_with_engine(
|
||||||
static POPULAR_REPO_BLOCK_LIST: Lazy<HashSet<RepoPath>> = Lazy::new(|| {
|
static POPULAR_REPO_BLOCK_LIST: Lazy<HashSet<RepoPath>> = Lazy::new(|| {
|
||||||
vec![
|
vec![
|
||||||
RepoPath::from_parts("github", "rust-lang", "rust"),
|
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", "lk-geimfari", "awesomo"),
|
||||||
RepoPath::from_parts("github", "redox-os", "tfs"),
|
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", "rust-unofficial", "awesome-rust"),
|
||||||
|
RepoPath::from_parts("github", "996icu", "996.ICU"),
|
||||||
]
|
]
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.collect::<Result<HashSet<_>, _>>()
|
.collect::<Result<HashSet<_>, _>>()
|
||||||
|
|
Loading…
Reference in a new issue