summaryrefslogtreecommitdiff
path: root/tools/release/helpers/crates_io.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/release/helpers/crates_io.ts')
-rw-r--r--tools/release/helpers/crates_io.ts22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/release/helpers/crates_io.ts b/tools/release/helpers/crates_io.ts
deleted file mode 100644
index af26f55af..000000000
--- a/tools/release/helpers/crates_io.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
-
-export interface CratesIoMetadata {
- crate: {
- id: string;
- name: string;
- };
- versions: {
- crate: string;
- num: string;
- }[];
-}
-
-export async function getCratesIoMetadata(crateName: string) {
- // rate limit
- await new Promise((resolve) => setTimeout(resolve, 100));
-
- const response = await fetch(`https://crates.io/api/v1/crates/${crateName}`);
- const data = await response.json();
-
- return data as CratesIoMetadata;
-}