Skip to content

Commit

Permalink
chore(deps): bump std (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
erfanium authored Dec 4, 2021
1 parent e3c14d4 commit f844774
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export * as Bson from "./bson/bson.ts";
export { crypto } from "https://deno.land/std@0.116.0/crypto/mod.ts";
export { BufReader } from "https://deno.land/std@0.116.0/io/mod.ts";
export { writeAll } from "https://deno.land/std@0.116.0/streams/conversion.ts";
export { deferred } from "https://deno.land/std@0.116.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.116.0/async/deferred.ts";
export * as b64 from "https://deno.land/std@0.116.0/encoding/base64.ts";
export * as hex from "https://deno.land/std@0.116.0/encoding/hex.ts";
export { crypto } from "https://deno.land/std@0.117.0/crypto/mod.ts";
export { BufReader } from "https://deno.land/std@0.117.0/io/mod.ts";
export { writeAll } from "https://deno.land/std@0.117.0/streams/conversion.ts";
export { deferred } from "https://deno.land/std@0.117.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.117.0/async/deferred.ts";
export * as b64 from "https://deno.land/std@0.117.0/encoding/base64.ts";
export * as hex from "https://deno.land/std@0.117.0/encoding/hex.ts";
export {
assert,
assertEquals,
} from "https://deno.land/std@0.116.0/testing/asserts.ts";
} from "https://deno.land/std@0.117.0/testing/asserts.ts";
2 changes: 1 addition & 1 deletion tests/test.deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ export {
assertEquals,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@0.116.0/testing/asserts.ts";
} from "https://deno.land/std@0.117.0/testing/asserts.ts";
export * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts";

0 comments on commit f844774

Please sign in to comment.