Skip to content

Commit d91ef2c

Browse files
committed
📦 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.195.0 [1/1] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.195.0 /home/runner/work/deno-replutil/deno-replutil/README.md /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.195.0 [1/1] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.195.0 /home/runner/work/deno-replutil/deno-replutil/sender_test.ts /home/runner/work/deno-replutil/deno-replutil/receiver_test.ts /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.195.0 [1/4] Update successful: https://deno.land/std@0.128.0/testing/asserts.ts -> 0.195.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.195.0 [2/4] Update successful: https://deno.land/std@0.128.0/io/mod.ts -> 0.195.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.195.0 [3/4] Update successful: https://deno.land/std@0.128.0/async/mod.ts -> 0.195.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.195.0 [4/4] Update successful: https://deno.land/std@0.128.0/streams/mod.ts -> 0.195.0 Successfully updated: https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.195.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.195.0 https://deno.land/std@0.128.0/testing/asserts.ts 0.128.0 -> 0.195.0 https://deno.land/std@0.128.0/io/mod.ts 0.128.0 -> 0.195.0 https://deno.land/std@0.128.0/async/mod.ts 0.128.0 -> 0.195.0 https://deno.land/std@0.128.0/streams/mod.ts 0.128.0 -> 0.195.0 make[1]: Entering directory '/home/runner/work/deno-replutil/deno-replutil' make[1]: Leaving directory '/home/runner/work/deno-replutil/deno-replutil'
1 parent 403fedc commit d91ef2c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

deps_test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export * from "https://deno.land/std@0.128.0/testing/asserts.ts";
2-
export * as io from "https://deno.land/std@0.128.0/io/mod.ts";
3-
export { delay } from "https://deno.land/std@0.128.0/async/mod.ts";
4-
export * as streams from "https://deno.land/std@0.128.0/streams/mod.ts";
1+
export * from "https://deno.land/std@0.195.0/testing/asserts.ts";
2+
export * as io from "https://deno.land/std@0.195.0/io/mod.ts";
3+
export { delay } from "https://deno.land/std@0.195.0/async/mod.ts";
4+
export * as streams from "https://deno.land/std@0.195.0/streams/mod.ts";

receiver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { delay } from "https://deno.land/std@0.128.0/async/mod.ts";
1+
import { delay } from "https://deno.land/std@0.195.0/async/mod.ts";
22

33
const DEFAULT_PATTERN = /\n/m;
44

sender.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { writeAll } from "https://deno.land/std@0.128.0/streams/mod.ts";
1+
import { writeAll } from "https://deno.land/std@0.195.0/streams/mod.ts";
22

33
export class Sender {
44
#writer: Deno.Writer;

0 commit comments

Comments
 (0)