From 1981ca4d73beeaa33cd22d1c69a9d90615895575 Mon Sep 17 00:00:00 2001 From: lambdalisue Date: Thu, 27 Jul 2023 00:13:10 +0000 Subject: [PATCH] :package: Update Deno dependencies Update dependencies by udd: /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/message.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/example/client.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/example/README.md /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/example/server.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/mod.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/session.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/response_waiter.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/indexer_test.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/response_waiter_test.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/README.md /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/session_test.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/deps.ts [1/5] Looking for releases: https://deno.land/x/msgpack@v1.4/mod.ts [1/5] Skip updating: https://deno.land/x/msgpack@v1.4/mod.ts [2/5] Looking for releases: https://deno.land/x/std@0.184.0/async/mod.ts [2/5] Attempting update: https://deno.land/x/std@0.184.0/async/mod.ts -> 0.196.0 [2/5] Update successful: https://deno.land/x/std@0.184.0/async/mod.ts -> 0.196.0 [3/5] Looking for releases: https://deno.land/x/std@0.184.0/streams/mod.ts [3/5] Attempting update: https://deno.land/x/std@0.184.0/streams/mod.ts -> 0.196.0 [3/5] Update successful: https://deno.land/x/std@0.184.0/streams/mod.ts -> 0.196.0 [4/5] Looking for releases: https://deno.land/x/std@0.184.0/async/mod.ts [4/5] Attempting update: https://deno.land/x/std@0.184.0/async/mod.ts -> 0.196.0 [4/5] Update successful: https://deno.land/x/std@0.184.0/async/mod.ts -> 0.196.0 [5/5] Looking for releases: https://deno.land/x/disposable@v1.1.0/mod.ts [5/5] Attempting update: https://deno.land/x/disposable@v1.1.0/mod.ts -> v1.1.1 [5/5] Update successful: https://deno.land/x/disposable@v1.1.0/mod.ts -> v1.1.1 /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/message_test.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/indexer.ts /home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc/deps_test.ts [1/3] Looking for releases: https://deno.land/std@0.184.0/testing/asserts.ts [1/3] Attempting update: https://deno.land/std@0.184.0/testing/asserts.ts -> 0.196.0 [1/3] Update successful: https://deno.land/std@0.184.0/testing/asserts.ts -> 0.196.0 [2/3] Looking for releases: https://deno.land/std@0.184.0/async/mod.ts [2/3] Attempting update: https://deno.land/std@0.184.0/async/mod.ts -> 0.196.0 [2/3] Update successful: https://deno.land/std@0.184.0/async/mod.ts -> 0.196.0 [3/3] Looking for releases: https://deno.land/x/disposable@v1.1.0/mod.ts [3/3] Attempting update: https://deno.land/x/disposable@v1.1.0/mod.ts -> v1.1.1 [3/3] Update successful: https://deno.land/x/disposable@v1.1.0/mod.ts -> v1.1.1 Already latest version: https://deno.land/x/msgpack@v1.4/mod.ts == v1.4 Successfully updated: https://deno.land/x/std@0.184.0/async/mod.ts 0.184.0 -> 0.196.0 https://deno.land/x/std@0.184.0/streams/mod.ts 0.184.0 -> 0.196.0 https://deno.land/x/std@0.184.0/async/mod.ts 0.184.0 -> 0.196.0 https://deno.land/x/disposable@v1.1.0/mod.ts v1.1.0 -> v1.1.1 https://deno.land/std@0.184.0/testing/asserts.ts 0.184.0 -> 0.196.0 https://deno.land/std@0.184.0/async/mod.ts 0.184.0 -> 0.196.0 https://deno.land/x/disposable@v1.1.0/mod.ts v1.1.0 -> v1.1.1 make[1]: Entering directory '/home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc' make[1]: Leaving directory '/home/runner/work/deno-msgpack-rpc/deno-msgpack-rpc' --- deps.ts | 8 ++++---- deps_test.ts | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/deps.ts b/deps.ts index e12f34b..0de6a09 100644 --- a/deps.ts +++ b/deps.ts @@ -1,5 +1,5 @@ export { decodeStream, encode } from "https://deno.land/x/msgpack@v1.4/mod.ts"; -export { deferred, delay } from "https://deno.land/x/std@0.184.0/async/mod.ts"; -export * as streams from "https://deno.land/x/std@0.184.0/streams/mod.ts"; -export type { Deferred } from "https://deno.land/x/std@0.184.0/async/mod.ts"; -export type { Disposable } from "https://deno.land/x/disposable@v1.1.0/mod.ts"; +export { deferred, delay } from "https://deno.land/x/std@0.196.0/async/mod.ts"; +export * as streams from "https://deno.land/x/std@0.196.0/streams/mod.ts"; +export type { Deferred } from "https://deno.land/x/std@0.196.0/async/mod.ts"; +export type { Disposable } from "https://deno.land/x/disposable@v1.1.1/mod.ts"; diff --git a/deps_test.ts b/deps_test.ts index c7d5183..85b5e73 100644 --- a/deps_test.ts +++ b/deps_test.ts @@ -1,3 +1,3 @@ -export * from "https://deno.land/std@0.184.0/testing/asserts.ts"; -export { delay } from "https://deno.land/std@0.184.0/async/mod.ts"; -export { using } from "https://deno.land/x/disposable@v1.1.0/mod.ts"; +export * from "https://deno.land/std@0.196.0/testing/asserts.ts"; +export { delay } from "https://deno.land/std@0.196.0/async/mod.ts"; +export { using } from "https://deno.land/x/disposable@v1.1.1/mod.ts";