Skip to content

Commit

Permalink
Merge pull request #15 from lambdalisue/automation/update-dependencie…
Browse files Browse the repository at this point in the history
…s-1633863050

📦 Update Deno dependencies
  • Loading branch information
lambdalisue authored Oct 10, 2021
2 parents 1782cd7 + bed008c commit 03126d4
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion benchmark/benchmark.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parse } from "https://deno.land/std@0.109.0/flags/mod.ts";
import { parse } from "https://deno.land/std@0.110.0/flags/mod.ts";
import { assertEquals, delay, io } from "../deps_test.ts";
import { WorkerReader, WorkerWriter } from "../mod.ts";

4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { Queue } from "https://deno.land/x/[email protected]/queue.ts";
export { deferred } from "https://deno.land/std@0.109.0/async/mod.ts";
export type { Deferred } from "https://deno.land/std@0.109.0/async/mod.ts";
export { deferred } from "https://deno.land/std@0.110.0/async/mod.ts";
export type { Deferred } from "https://deno.land/std@0.110.0/async/mod.ts";

export { compareVersions } from "https://deno.land/x/[email protected]/mod.ts";
6 changes: 3 additions & 3 deletions deps_test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "https://deno.land/std@0.109.0/testing/asserts.ts";
export * as io from "https://deno.land/std@0.109.0/io/mod.ts";
export { delay } from "https://deno.land/std@0.109.0/async/mod.ts";
export * from "https://deno.land/std@0.110.0/testing/asserts.ts";
export * as io from "https://deno.land/std@0.110.0/io/mod.ts";
export { delay } from "https://deno.land/std@0.110.0/async/mod.ts";
2 changes: 1 addition & 1 deletion example/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as io from "https://deno.land/std@0.109.0/io/mod.ts";
import * as io from "https://deno.land/std@0.110.0/io/mod.ts";
import { WorkerReader, WorkerWriter } from "../mod.ts";

const decoder = new TextDecoder();
2 changes: 1 addition & 1 deletion example/worker.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as io from "https://deno.land/std@0.109.0/io/mod.ts";
import * as io from "https://deno.land/std@0.110.0/io/mod.ts";
import { WorkerReader, WorkerWriter } from "../mod.ts";

const decoder = new TextDecoder();

0 comments on commit 03126d4

Please sign in to comment.