From 645313720846d8df8369bcebaccee3e0f42a6ef2 Mon Sep 17 00:00:00 2001 From: Fabian Stamm Date: Sun, 2 Aug 2020 23:43:17 +0200 Subject: [PATCH] Updating to new deno std --- registry/src/deps.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/registry/src/deps.ts b/registry/src/deps.ts index 9d7f592..15d3895 100644 --- a/registry/src/deps.ts +++ b/registry/src/deps.ts @@ -8,11 +8,10 @@ export * as ABC from "https://deno.land/x/abc@v1/mod.ts"; export * as CorsMW from "https://deno.land/x/abc@v1/middleware/cors.ts"; export * as LoggerMW from "https://deno.land/x/abc@v1/middleware/logger.ts"; -export * as Path from "https://deno.land/std@0.62.0/path/mod.ts"; -export * as FS from "https://deno.land/std@0.62.0/fs/mod.ts"; - -export * as Base64 from "https://deno.land/std@0.62.0/encoding/base64.ts"; -export * as Hash from "https://deno.land/std@0.62.0/hash/mod.ts"; +export * as Path from "https://deno.land/std@0.63.0/path/mod.ts"; +export * as FS from "https://deno.land/std@0.63.0/fs/mod.ts"; +export * as Base64 from "https://deno.land/std@0.63.0/encoding/base64.ts"; +export * as Hash from "https://deno.land/std@0.63.0/hash/mod.ts"; export * as Compress from "https://git.stamm.me/Deno/DenReg/raw/branch/master/tar/mod.ts";