Skip to content

Commit

Permalink
chore: update std version
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed May 11, 2024
1 parent 77f0df0 commit b519f94
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions _test_util.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
6 changes: 3 additions & 3 deletions blob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions crypto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion ndjson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit b519f94

Please sign in to comment.