From 0f1998442f2bc261bf98d99365f30804bfe8d711 Mon Sep 17 00:00:00 2001 From: lambdalisue Date: Fri, 25 Mar 2022 00:05:06 +0000 Subject: [PATCH] :package: Update Deno dependencies Update dependencies by udd: /home/runner/work/deno-replutil/deno-replutil/mod.ts /home/runner/work/deno-replutil/deno-replutil/sender.ts [1/1] Looking for releases: https://deno.land/std@0.128.0/streams/mod.ts [1/1] Attempting update: https://deno.land/std@0.128.0/streams/mod.ts -> 0.131.0 [1/1] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.131.0 /home/runner/work/deno-replutil/deno-replutil/sender_test.ts /home/runner/work/deno-replutil/deno-replutil/receiver.ts /home/runner/work/deno-replutil/deno-replutil/receiver_test.ts /home/runner/work/deno-replutil/deno-replutil/README.md /home/runner/work/deno-replutil/deno-replutil/deps_test.ts [1/4] Looking for releases: https://deno.land/std@0.128.0/testing/asserts.ts [1/4] Attempting update: https://deno.land/std@0.128.0/testing/asserts.ts -> 0.131.0 [1/4] Update successful: https://deno.land/std@0.128.0/testing/asserts.ts -> 0.131.0 [2/4] Looking for releases: https://deno.land/std@0.128.0/io/mod.ts [2/4] Attempting update: https://deno.land/std@0.128.0/io/mod.ts -> 0.131.0 [2/4] Update successful: https://deno.land/std@0.128.0/io/mod.ts -> 0.131.0 [3/4] Looking for releases: https://deno.land/std@0.128.0/async/mod.ts [3/4] Attempting update: https://deno.land/std@0.128.0/async/mod.ts -> 0.131.0 [3/4] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.131.0 [4/4] Looking for releases: https://deno.land/std@0.128.0/streams/mod.ts [4/4] Attempting update: https://deno.land/std@0.128.0/streams/mod.ts -> 0.131.0 [4/4] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.131.0 Successfully updated: https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.131.0 https://deno.land/std@0.128.0/testing/asserts.ts 0.128.0 -> 0.131.0 https://deno.land/std@0.128.0/io/mod.ts 0.128.0 -> 0.131.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.131.0 https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.131.0 make[1]: Entering directory '/home/runner/work/deno-replutil/deno-replutil' make[1]: Leaving directory '/home/runner/work/deno-replutil/deno-replutil' --- deps_test.ts | 8 ++++---- sender.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deps_test.ts b/deps_test.ts index 349f9ce..6ee6b10 100644 --- a/deps_test.ts +++ b/deps_test.ts @@ -1,4 +1,4 @@ -export * from "https://deno.land/std@0.128.0/testing/asserts.ts"; -export * as io from "https://deno.land/std@0.128.0/io/mod.ts"; -export { delay } from "https://deno.land/std@0.128.0/async/mod.ts"; -export * as streams from "https://deno.land/std@0.128.0/streams/mod.ts"; +export * from "https://deno.land/std@0.131.0/testing/asserts.ts"; +export * as io from "https://deno.land/std@0.131.0/io/mod.ts"; +export { delay } from "https://deno.land/std@0.131.0/async/mod.ts"; +export * as streams from "https://deno.land/std@0.131.0/streams/mod.ts"; diff --git a/sender.ts b/sender.ts index 7976a0e..bae5da6 100644 --- a/sender.ts +++ b/sender.ts @@ -1,4 +1,4 @@ -import { writeAll } from "https://deno.land/std@0.128.0/streams/mod.ts"; +import { writeAll } from "https://deno.land/std@0.131.0/streams/mod.ts"; export class Sender { #writer: Deno.Writer;