Skip to content

Commit

Permalink
chore: update to std 0.217.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Feb 22, 2024
1 parent e54329f commit ef9a5ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions _test_util.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { assert } from "https://deno.land/std@0.215.0/assert/assert.ts";
export { delay } from "https://deno.land/std@0.215.0/async/delay.ts";
export { assert } from "https://deno.land/std@0.215.0/assert/assert.ts";
export { assertEquals } from "https://deno.land/std@0.215.0/assert/assert_equals.ts";
import { assert } from "https://deno.land/std@0.217.0/assert/assert.ts";
export { delay } from "https://deno.land/std@0.217.0/async/delay.ts";
export { assert } from "https://deno.land/std@0.217.0/assert/assert.ts";
export { assertEquals } from "https://deno.land/std@0.217.0/assert/assert_equals.ts";
export {
assertNotEquals,
} from "https://deno.land/std@0.215.0/assert/assert_not_equals.ts";
export { timingSafeEqual } from "https://deno.land/std@0.215.0/crypto/timing_safe_equal.ts";
} from "https://deno.land/std@0.217.0/assert/assert_not_equals.ts";
export { timingSafeEqual } from "https://deno.land/std@0.217.0/crypto/timing_safe_equal.ts";

let kv: Deno.Kv | undefined;
let path: string | undefined;
Expand Down
2 changes: 1 addition & 1 deletion keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @module
*/

import { timingSafeEqual } from "https://deno.land/std@0.215.0/crypto/timing_safe_equal.ts";
import { timingSafeEqual } from "https://deno.land/std@0.217.0/crypto/timing_safe_equal.ts";

function addIfUnique(set: Set<Deno.KvKeyPart>, item: Uint8Array) {
for (const i of set) {
Expand Down

0 comments on commit ef9a5ae

Please sign in to comment.