From bde4329a8bb4dcde922070e3496fb7973edbf1bb Mon Sep 17 00:00:00 2001 From: lambdalisue Date: Fri, 16 Feb 2024 00:05:38 +0000 Subject: [PATCH] :package: Update Deno dependencies Update dependencies by udd: /home/runner/work/deno-replutil/deno-replutil/README.md /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.216.0 [1/1] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.216.0 /home/runner/work/deno-replutil/deno-replutil/receiver_test.ts /home/runner/work/deno-replutil/deno-replutil/mod.ts /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.216.0 [1/1] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.216.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.216.0 [1/4] Update successful: https://deno.land/std@0.128.0/testing/asserts.ts -> 0.216.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.216.0 [2/4] Update successful: https://deno.land/std@0.128.0/io/mod.ts -> 0.216.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.216.0 [3/4] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.216.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.216.0 [4/4] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.216.0 /home/runner/work/deno-replutil/deno-replutil/sender_test.ts Successfully updated: https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.216.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.216.0 https://deno.land/std@0.128.0/testing/asserts.ts 0.128.0 -> 0.216.0 https://deno.land/std@0.128.0/io/mod.ts 0.128.0 -> 0.216.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.216.0 https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.216.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..008d578 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.216.0/testing/asserts.ts"; +export * as io from "https://deno.land/std@0.216.0/io/mod.ts"; +export { delay } from "https://deno.land/std@0.216.0/async/mod.ts"; +export * as streams from "https://deno.land/std@0.216.0/streams/mod.ts"; diff --git a/receiver.ts b/receiver.ts index 4005f32..e42de09 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.216.0/async/mod.ts"; const DEFAULT_PATTERN = /\n/m; diff --git a/sender.ts b/sender.ts index 7976a0e..c9c9a28 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.216.0/streams/mod.ts"; export class Sender { #writer: Deno.Writer;