Skip to content

Commit e31ba20

Browse files
committed
Remove rust repositories
Signed-off-by: paulober <[email protected]>
1 parent 7299c94 commit e31ba20

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

src/utils/githubREST.mts

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ export enum GithubRepository {
2525
ninja = 2,
2626
tools = 3,
2727
picotool = 4,
28-
rust = 5,
29-
rsTools = 6,
3028
}
3129

3230
/**
@@ -70,10 +68,6 @@ export function ownerOfRepository(repository: GithubRepository): string {
7068
return "Kitware";
7169
case GithubRepository.ninja:
7270
return "ninja-build";
73-
case GithubRepository.rust:
74-
return "rust-lang";
75-
case GithubRepository.rsTools:
76-
return "paulober";
7771
}
7872
}
7973

@@ -96,10 +90,6 @@ export function repoNameOfRepository(repository: GithubRepository): string {
9690
return "pico-sdk-tools";
9791
case GithubRepository.picotool:
9892
return "picotool";
99-
case GithubRepository.rust:
100-
return "rust";
101-
case GithubRepository.rsTools:
102-
return "pico-vscode-rs-tools";
10393
}
10494
}
10595

@@ -320,14 +310,6 @@ export async function getCmakeReleases(): Promise<string[]> {
320310
return getReleases(GithubRepository.cmake);
321311
}
322312

323-
export async function getRustReleases(): Promise<string[]> {
324-
return getReleases(GithubRepository.rust);
325-
}
326-
327-
export async function getRustToolsReleases(): Promise<string[]> {
328-
return getReleases(GithubRepository.rsTools);
329-
}
330-
331313
/**
332314
* Get the release data for a specific tag from
333315
* the GitHub RESY API.

0 commit comments

Comments
 (0)