Skip to content

Commit ef9a5ae

Browse files
committed
chore: update to std 0.217.0
1 parent e54329f commit ef9a5ae

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

_test_util.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { assert } from "https://deno.land/std@0.215.0/assert/assert.ts";
2-
export { delay } from "https://deno.land/std@0.215.0/async/delay.ts";
3-
export { assert } from "https://deno.land/std@0.215.0/assert/assert.ts";
4-
export { assertEquals } from "https://deno.land/std@0.215.0/assert/assert_equals.ts";
1+
import { assert } from "https://deno.land/std@0.217.0/assert/assert.ts";
2+
export { delay } from "https://deno.land/std@0.217.0/async/delay.ts";
3+
export { assert } from "https://deno.land/std@0.217.0/assert/assert.ts";
4+
export { assertEquals } from "https://deno.land/std@0.217.0/assert/assert_equals.ts";
55
export {
66
assertNotEquals,
7-
} from "https://deno.land/std@0.215.0/assert/assert_not_equals.ts";
8-
export { timingSafeEqual } from "https://deno.land/std@0.215.0/crypto/timing_safe_equal.ts";
7+
} from "https://deno.land/std@0.217.0/assert/assert_not_equals.ts";
8+
export { timingSafeEqual } from "https://deno.land/std@0.217.0/crypto/timing_safe_equal.ts";
99

1010
let kv: Deno.Kv | undefined;
1111
let path: string | undefined;

keys.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @module
2828
*/
2929

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

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

0 commit comments

Comments
 (0)