Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed May 13, 2023
1 parent e86b337 commit ee4d709
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion channel_bench.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { channel as channelV3 } from "https://deno.land/x/[email protected]/channel.ts";
import { channel as channelV3 } from "https://deno.land/x/[email protected]/channel.ts#=";
import { channel } from "./channel.ts";

Deno.bench("channel", { group: "channel", baseline: true }, async () => {
Expand Down
4 changes: 2 additions & 2 deletions channel_test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
} from "https://deno.land/std@0.187.0/testing/asserts.ts";
import {
deadline,
DeadlineError,
} from "https://deno.land/std@0.186.0/async/mod.ts";
} from "https://deno.land/std@0.187.0/async/mod.ts";
import { provide } from "./provide.ts";
import { pop } from "./pop.ts";
import { push } from "./push.ts";
Expand Down
4 changes: 2 additions & 2 deletions collect_test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
} from "https://deno.land/std@0.187.0/testing/asserts.ts";
import {
deadline,
DeadlineError,
} from "https://deno.land/std@0.186.0/async/deadline.ts";
} from "https://deno.land/std@0.187.0/async/deadline.ts";
import { collect } from "./collect.ts";

Deno.test("collect returns an empty array for an empty stream", async () => {
Expand Down
2 changes: 1 addition & 1 deletion pop_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
import { pop } from "./pop.ts";

Deno.test("pop", async (t) => {
Expand Down
2 changes: 1 addition & 1 deletion provide_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
import { provide } from "./provide.ts";

Deno.test("provide writes all values to stream", async () => {
Expand Down
2 changes: 1 addition & 1 deletion push_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
import { push } from "./push.ts";

Deno.test("push", async (t) => {
Expand Down
4 changes: 2 additions & 2 deletions read_all.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { concat } from "https://deno.land/std@0.186.0/bytes/mod.ts";
import { concat } from "https://deno.land/std@0.187.0/bytes/mod.ts";
import { collect } from "./collect.ts";

/**
* Reads all available bytes from a given `ReadableStream<Uint8Array>` and concatenates them into a single `Uint8Array`.
*
* ```ts
* import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
* import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
* import { readAll } from "./read_all.ts";
*
* const encoder = new TextEncoder();
Expand Down
2 changes: 1 addition & 1 deletion read_all_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
import { readAll } from "./read_all.ts";

Deno.test("readAll", async () => {
Expand Down
2 changes: 1 addition & 1 deletion write_all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type WriteAllOptions = PipeOptions & {
* Writes all data in a Uint8Array to a writable stream in chunk-size units.
*
* ```ts
* import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
* import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
* import { writeAll } from "./write_all.ts";
*
* const encoder = new TextEncoder();
Expand Down
4 changes: 2 additions & 2 deletions write_all_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
import { concat } from "https://deno.land/std@0.186.0/bytes/mod.ts";
import { assertEquals } from "https://deno.land/std@0.187.0/testing/asserts.ts";
import { concat } from "https://deno.land/std@0.187.0/bytes/mod.ts";
import { writeAll } from "./write_all.ts";

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

0 comments on commit ee4d709

Please sign in to comment.