diff --git a/_test_util.ts b/_test_util.ts index 193dd24..df33404 100644 --- a/_test_util.ts +++ b/_test_util.ts @@ -1,12 +1,12 @@ -import { assert } from "jsr:@std/assert@0.220/assert"; -export { concat } from "jsr:@std/bytes@0.220/concat"; -export { delay } from "jsr:@std/async@0.220/delay"; -export { assert } from "jsr:@std/assert@0.220/assert"; -export { assertEquals } from "jsr:@std/assert@0.220/assert_equals"; -export { assertNotEquals } from "jsr:@std/assert@0.220/assert_not_equals"; -export { assertRejects } from "jsr:@std/assert@0.220/assert_rejects"; -export { assertStrictEquals } from "jsr:@std/assert@0.220/assert_strict_equals"; -export { timingSafeEqual } from "jsr:@std/crypto@0.220/timing_safe_equal"; +import { assert } from "jsr:@std/assert@0.225/assert"; +export { concat } from "jsr:@std/bytes@0.224/concat"; +export { delay } from "jsr:@std/async@0.224/delay"; +export { assert } from "jsr:@std/assert@0.225/assert"; +export { assertEquals } from "jsr:@std/assert@0.225/assert-equals"; +export { assertNotEquals } from "jsr:@std/assert@0.225/assert-not-equals"; +export { assertRejects } from "jsr:@std/assert@0.225/assert-rejects"; +export { assertStrictEquals } from "jsr:@std/assert@0.225/assert-strict-equals"; +export { timingSafeEqual } from "jsr:@std/crypto@0.224/timing-safe-equal"; let kv: Deno.Kv | undefined; let path: string | undefined; diff --git a/blob.ts b/blob.ts index 4876c84..3497e65 100644 --- a/blob.ts +++ b/blob.ts @@ -65,12 +65,12 @@ * @module */ -import { concat } from "jsr:@std/bytes@0.220/concat"; +import { concat } from "jsr:@std/bytes@0.224/concat"; import { decodeBase64Url, encodeBase64Url, -} from "jsr:@std/encoding@0.220/base64url"; -import { extension } from "jsr:@std/media-types@0.220/extension"; +} from "jsr:@std/encoding@0.224/base64url"; +import { extension } from "jsr:@std/media-types@0.224/extension"; import { batchedAtomic } from "./batched_atomic.ts"; import { diff --git a/crypto.ts b/crypto.ts index 12626c4..d1227dc 100644 --- a/crypto.ts +++ b/crypto.ts @@ -31,9 +31,9 @@ * @module */ -import { assert } from "jsr:@std/assert@0.220/assert"; -import { decodeHex, encodeHex } from "jsr:@std/encoding@0.220/hex"; -import { concat } from "jsr:@std/bytes@0.220/concat"; +import { assert } from "jsr:@std/assert@0.225/assert"; +import { decodeHex, encodeHex } from "jsr:@std/encoding@0.224/hex"; +import { concat } from "jsr:@std/bytes@0.224/concat"; import { batchedAtomic } from "./batched_atomic.ts"; import { BLOB_KEY, type BlobMeta } from "./blob.ts"; diff --git a/json.ts b/json.ts index 6fd1e52..d3378b3 100644 --- a/json.ts +++ b/json.ts @@ -37,7 +37,7 @@ import { decodeBase64Url, encodeBase64Url, -} from "jsr:@std/encoding@0.220/base64url"; +} from "jsr:@std/encoding@0.224/base64url"; // Deno KV Key types diff --git a/keys.ts b/keys.ts index 428c37b..dde81fa 100644 --- a/keys.ts +++ b/keys.ts @@ -144,7 +144,7 @@ * @module */ -import { timingSafeEqual } from "jsr:@std/crypto@0.220/timing_safe_equal"; +import { timingSafeEqual } from "jsr:@std/crypto@0.224/timing-safe-equal"; import { BLOB_KEY, BLOB_META_KEY } from "./blob_util.ts"; diff --git a/ndjson.ts b/ndjson.ts index 693ceb1..bb5fac2 100644 --- a/ndjson.ts +++ b/ndjson.ts @@ -31,7 +31,7 @@ * @module */ -import { concat } from "jsr:@std/bytes@0.220/concat"; +import { concat } from "jsr:@std/bytes@0.224/concat"; import { entryToJSON, type KvEntryJSON, toKey, toValue } from "./json.ts";