Skip to content

Commit

Permalink
bump dependecies
Browse files Browse the repository at this point in the history
  • Loading branch information
erfanium committed Sep 5, 2022
1 parent d45dd12 commit 26f1103
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions deps.ts
@@ -1,8 +1,8 @@
export * from "https://deno.land/x/web_bson@v0.2.4/mod.ts";
export { crypto } from "https://deno.land/std@0.149.0/crypto/mod.ts";
export { BufReader } from "https://deno.land/std@0.149.0/io/mod.ts";
export { writeAll } from "https://deno.land/std@0.149.0/streams/conversion.ts";
export { deferred } from "https://deno.land/std@0.149.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.149.0/async/deferred.ts";
export * as b64 from "https://deno.land/std@0.149.0/encoding/base64.ts";
export * as hex from "https://deno.land/std@0.149.0/encoding/hex.ts";
export * from "https://deno.land/x/web_bson@v0.2.5/mod.ts";
export { crypto } from "https://deno.land/std@0.154.0/crypto/mod.ts";
export { BufReader } from "https://deno.land/std@0.154.0/io/mod.ts";
export { writeAll } from "https://deno.land/std@0.154.0/streams/conversion.ts";
export { deferred } from "https://deno.land/std@0.154.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.154.0/async/deferred.ts";
export * as b64 from "https://deno.land/std@0.154.0/encoding/base64.ts";
export * as hex from "https://deno.land/std@0.154.0/encoding/hex.ts";
8 changes: 4 additions & 4 deletions tests/test.deps.ts
Expand Up @@ -4,10 +4,10 @@ export {
assertNotEquals,
assertRejects,
assertThrows,
} from "https://deno.land/std@0.149.0/testing/asserts.ts";
export { equals as bytesEquals } from "https://deno.land/std@0.149.0/bytes/equals.ts";
export * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts";
} from "https://deno.land/std@0.154.0/testing/asserts.ts";
export { equals as bytesEquals } from "https://deno.land/std@0.154.0/bytes/equals.ts";
export * as semver from "https://deno.land/x/semver@v1.4.1/mod.ts";
export {
readAll,
readerFromStreamReader,
} from "https://deno.land/std@0.149.0/streams/mod.ts";
} from "https://deno.land/std@0.154.0/streams/mod.ts";

0 comments on commit 26f1103

Please sign in to comment.