Skip to content

Commit

Permalink
Merge pull request #280 from denodrivers/b1
Browse files Browse the repository at this point in the history
chore(deps): bump std to 0.111.0
  • Loading branch information
erfanium authored Oct 17, 2021
2 parents 276b06a + 2275f8f commit 73654d0
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,14 +1,14 @@
export * as Bson from "./bson/mod.ts";
export * from "./bson/mod.ts";
export type { Document } from "./bson/mod.ts";
export { createHash } from "https://deno.land/std@0.110.0/hash/mod.ts";
export { HmacSha1 } from "https://deno.land/std@0.110.0/hash/sha1.ts";
export { HmacSha256 } from "https://deno.land/std@0.110.0/hash/sha256.ts";
export { BufReader, writeAll } from "https://deno.land/std@0.110.0/io/mod.ts";
export { deferred } from "https://deno.land/std@0.110.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.110.0/async/deferred.ts";
export * as b64 from "https://deno.land/std@0.110.0/encoding/base64.ts";
export { createHash } from "https://deno.land/std@0.111.0/hash/mod.ts";
export { HmacSha1 } from "https://deno.land/std@0.111.0/hash/sha1.ts";
export { HmacSha256 } from "https://deno.land/std@0.111.0/hash/sha256.ts";
export { BufReader, writeAll } from "https://deno.land/std@0.111.0/io/mod.ts";
export { deferred } from "https://deno.land/std@0.111.0/async/deferred.ts";
export type { Deferred } from "https://deno.land/std@0.111.0/async/deferred.ts";
export * as b64 from "https://deno.land/std@0.111.0/encoding/base64.ts";
export {
assert,
assertEquals,
} from "https://deno.land/std@0.110.0/testing/asserts.ts";
} from "https://deno.land/std@0.111.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.110.0/testing/asserts.ts";
} from "https://deno.land/std@0.111.0/testing/asserts.ts";
export * as semver from "https://deno.land/x/[email protected]/mod.ts";

0 comments on commit 73654d0

Please sign in to comment.