Skip to content

Commit 453e728

Browse files
committed
📦 Update dependencies.
To support Deno prior to 1.38, we must continue to use `deferred` instead of `Promise.withResolvers()`
1 parent 211b308 commit 453e728

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

client_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
assertThrows,
5-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
} from "https://deno.land/std@0.210.0/assert/mod.ts";
66
import { buildMessage } from "./message.ts";
77
import { Client } from "./client.ts";
88

command_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertEquals,
33
assertThrows,
4-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.210.0/assert/mod.ts";
55
import {
66
buildCallCommand,
77
buildExCommand,

json_streams_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.210.0/assert/mod.ts";
22
import {
33
channel,
44
collect,
5-
} from "https://deno.land/x/streamtools@v0.4.0/mod.ts";
5+
} from "https://deno.land/x/streamtools@v0.5.0/mod.ts";
66
import { DecodeStream, EncodeStream } from "./json_streams.ts";
77

88
const encoder = new TextEncoder();

message_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.210.0/assert/mod.ts";
22
import { buildMessage, isMessage } from "./message.ts";
33

44
const isMessageTestCases = [

session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Reservator } from "https://deno.land/x/[email protected]/mod.ts";
22
import {
33
Channel,
44
channel,
5-
} from "https://deno.land/x/streamtools@v0.4.1/mod.ts";
5+
} from "https://deno.land/x/streamtools@v0.5.0/mod.ts";
66
import { DecodeStream, EncodeStream } from "./json_streams.ts";
77
import { Command } from "./command.ts";
88
import { isMessage, Message } from "./message.ts";

session_test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ import {
44
AssertionError,
55
assertRejects,
66
assertThrows,
7-
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
7+
} from "https://deno.land/std@0.210.0/assert/mod.ts";
88
import {
99
deadline,
1010
DeadlineError,
11-
deferred,
12-
} from "https://deno.land/std@0.186.0/async/mod.ts";
11+
} from "https://deno.land/[email protected]/async/mod.ts";
12+
import { deferred } from "https://deno.land/std@0.208.0/async/mod.ts#=";
1313
import {
1414
Channel,
1515
channel,
1616
pop,
1717
push,
18-
} from "https://deno.land/x/streamtools@v0.4.1/mod.ts";
18+
} from "https://deno.land/x/streamtools@v0.5.0/mod.ts";
1919
import { buildRedrawCommand } from "./command.ts";
2020
import { buildMessage, Message } from "./message.ts";
2121
import { Session } from "./session.ts";

0 commit comments

Comments
 (0)