From 2f5616f478a55b61d42b38c186ba4881702303e2 Mon Sep 17 00:00:00 2001 From: Keegan Donley Date: Thu, 4 Jan 2024 15:39:32 -0600 Subject: [PATCH] pin version of std temporarily --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 0a90aa0..923af02 100644 --- a/index.ts +++ b/index.ts @@ -2,7 +2,7 @@ import { ACTIONS } from './types.ts'; import type { IConfig } from './types.ts'; import Printer from './printer.ts'; import History from './history.ts'; -import { deferred } from "https://deno.land/std/async/mod.ts"; +import { deferred } from "https://deno.land/std@0.205.0/async/mod.ts"; export default class InputLoop { private buf = new Uint8Array(1024);