From f66d6cf849d25c3c1a47db3319e0219fde5f06e6 Mon Sep 17 00:00:00 2001 From: lambdalisue Date: Fri, 5 Aug 2022 00:06:16 +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/receiver_test.ts /home/runner/work/deno-replutil/deno-replutil/sender_test.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.151.0 [1/1] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.151.0 /home/runner/work/deno-replutil/deno-replutil/receiver.ts [1/1] Looking for releases: https://deno.land/std@0.128.0/async/mod.ts [1/1] Attempting update: https://deno.land/std@0.128.0/async/mod.ts -> 0.151.0 [1/1] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.151.0 /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.151.0 [1/4] Update successful: https://deno.land/std@0.128.0/testing/asserts.ts -> 0.151.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.151.0 [2/4] Update successful: https://deno.land/std@0.128.0/io/mod.ts -> 0.151.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.151.0 [3/4] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.151.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.151.0 [4/4] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.151.0 /home/runner/work/deno-replutil/deno-replutil/README.md Successfully updated: https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.151.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.151.0 https://deno.land/std@0.128.0/testing/asserts.ts 0.128.0 -> 0.151.0 https://deno.land/std@0.128.0/io/mod.ts 0.128.0 -> 0.151.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.151.0 https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.151.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 ++++---- receiver.ts | 2 +- sender.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deps_test.ts b/deps_test.ts index 349f9ce..d94bae7 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.151.0/testing/asserts.ts"; +export * as io from "https://deno.land/std@0.151.0/io/mod.ts"; +export { delay } from "https://deno.land/std@0.151.0/async/mod.ts"; +export * as streams from "https://deno.land/std@0.151.0/streams/mod.ts"; diff --git a/receiver.ts b/receiver.ts index 4005f32..967ac28 100644 --- a/receiver.ts +++ b/receiver.ts @@ -1,4 +1,4 @@ -import { delay } from "https://deno.land/std@0.128.0/async/mod.ts"; +import { delay } from "https://deno.land/std@0.151.0/async/mod.ts"; const DEFAULT_PATTERN = /\n/m; diff --git a/sender.ts b/sender.ts index 7976a0e..eddf158 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.151.0/streams/mod.ts"; export class Sender { #writer: Deno.Writer;