Skip to content

Commit ee4d709

Browse files
committed
Upgrade dependencies
1 parent e86b337 commit ee4d709

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

channel_bench.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { channel as channelV3 } from "https://deno.land/x/[email protected]/channel.ts";
1+
import { channel as channelV3 } from "https://deno.land/x/[email protected]/channel.ts#=";
22
import { channel } from "./channel.ts";
33

44
Deno.bench("channel", { group: "channel", baseline: true }, async () => {

channel_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.187.0/testing/asserts.ts";
55
import {
66
deadline,
77
DeadlineError,
8-
} from "https://deno.land/std@0.186.0/async/mod.ts";
8+
} from "https://deno.land/std@0.187.0/async/mod.ts";
99
import { provide } from "./provide.ts";
1010
import { pop } from "./pop.ts";
1111
import { push } from "./push.ts";

collect_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.187.0/testing/asserts.ts";
55
import {
66
deadline,
77
DeadlineError,
8-
} from "https://deno.land/std@0.186.0/async/deadline.ts";
8+
} from "https://deno.land/std@0.187.0/async/deadline.ts";
99
import { collect } from "./collect.ts";
1010

1111
Deno.test("collect returns an empty array for an empty stream", async () => {

pop_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
22
import { pop } from "./pop.ts";
33

44
Deno.test("pop", async (t) => {

provide_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
22
import { provide } from "./provide.ts";
33

44
Deno.test("provide writes all values to stream", async () => {

push_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
22
import { push } from "./push.ts";
33

44
Deno.test("push", async (t) => {

read_all.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { concat } from "https://deno.land/std@0.186.0/bytes/mod.ts";
1+
import { concat } from "https://deno.land/std@0.187.0/bytes/mod.ts";
22
import { collect } from "./collect.ts";
33

44
/**
55
* Reads all available bytes from a given `ReadableStream<Uint8Array>` and concatenates them into a single `Uint8Array`.
66
*
77
* ```ts
8-
* import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
8+
* import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
99
* import { readAll } from "./read_all.ts";
1010
*
1111
* const encoder = new TextEncoder();

read_all_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
22
import { readAll } from "./read_all.ts";
33

44
Deno.test("readAll", async () => {

write_all.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type WriteAllOptions = PipeOptions & {
77
* Writes all data in a Uint8Array to a writable stream in chunk-size units.
88
*
99
* ```ts
10-
* import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
10+
* import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
1111
* import { writeAll } from "./write_all.ts";
1212
*
1313
* const encoder = new TextEncoder();

write_all_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
2-
import { concat } from "https://deno.land/std@0.186.0/bytes/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
2+
import { concat } from "https://deno.land/std@0.187.0/bytes/mod.ts";
33
import { writeAll } from "./write_all.ts";
44

55
Deno.test("writeAll", async (t) => {

0 commit comments

Comments
 (0)