Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #9 from vim-denops/fix-massive-data
Browse files Browse the repository at this point in the history
Update dependencies to fix issue on massive data
  • Loading branch information
lambdalisue authored Apr 10, 2021
2 parents 2f56b4a + 53d1a32 commit 9166242
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export { Queue } from "https://deno.land/x/[email protected]/mod.ts";
export { Session } from "https://deno.land/x/msgpack_rpc@v2.6/mod.ts";
export { Session } from "https://deno.land/x/msgpack_rpc@v2.7/mod.ts";
export type {
Dispatcher,
DispatcherFrom,
} from "https://deno.land/x/msgpack_rpc@v2.6/mod.ts";
export { copy as copyBytes } from "https://deno.land/std@0.87.0/bytes/mod.ts";
} from "https://deno.land/x/msgpack_rpc@v2.7/mod.ts";
export { copy as copyBytes } from "https://deno.land/std@0.92.0/bytes/mod.ts";
export {
WorkerReader,
WorkerWriter,
Expand Down
2 changes: 1 addition & 1 deletion deps_test.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "https://deno.land/std@0.87.0/testing/asserts.ts";
export * from "https://deno.land/std@0.92.0/testing/asserts.ts";
export { Session as VimSession } from "https://deno.land/x/[email protected]/mod.ts";

0 comments on commit 9166242

Please sign in to comment.