Skip to content

Commit

Permalink
chore: update to std 0.215
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Feb 13, 2024
1 parent 9889df0 commit 52bccbc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
24 changes: 12 additions & 12 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@

// jsr dependencies

export { concat } from "jsr:@std/bytes@0.213/concat";
export { copy as copyBytes } from "jsr:@std/bytes@0.213/copy";
export { timingSafeEqual } from "jsr:@std/crypto@0.213/timing_safe_equal";
export { KeyStack } from "jsr:@std/crypto@0.213/unstable_keystack";
export { encodeBase64 } from "jsr:@std/encoding@0.213/base64";
export { concat } from "jsr:@std/bytes@0.215/concat";
export { copy as copyBytes } from "jsr:@std/bytes@0.215/copy";
export { timingSafeEqual } from "jsr:@std/crypto@0.215/timing_safe_equal";
export { KeyStack } from "jsr:@std/crypto@0.215/unstable_keystack";
export { encodeBase64 } from "jsr:@std/encoding@0.215/base64";
export {
calculate,
type ETagOptions,
type FileInfo,
ifMatch,
ifNoneMatch,
} from "jsr:@std/http@0.213/etag";
} from "jsr:@std/http@0.215/etag";
export {
accepts,
acceptsEncodings,
acceptsLanguages,
} from "jsr:@std/http@0.213/negotiation";
export { UserAgent } from "jsr:@std/http@0.213/user_agent";
export { LimitedReader } from "jsr:@std/io@0.213/limited_reader";
export { readAll } from "jsr:@std/io@0.213/read_all";
export { contentType } from "jsr:@std/media_types@0.213/content_type";
export { typeByExtension } from "jsr:@std/media_types@0.213/type_by_extension";
} from "jsr:@std/http@0.215/negotiation";
export { UserAgent } from "jsr:@std/http@0.215/user_agent";
export { LimitedReader } from "jsr:@std/io@0.215/limited_reader";
export { readAll } from "jsr:@std/io@0.215/read_all";
export { contentType } from "jsr:@std/media_types@0.215/content_type";
export { typeByExtension } from "jsr:@std/media_types@0.215/type_by_extension";
export {
basename,
extname,
Expand Down
14 changes: 7 additions & 7 deletions test_deps.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright 2018-2024 the oak authors. All rights reserved. MIT license.

export { assert } from "jsr:@std/assert@0.213/assert";
export { assertEquals } from "jsr:@std/assert@0.213/assert_equals";
export { assertInstanceOf } from "jsr:@std/assert@0.213/assert_instance_of";
export { assertRejects } from "jsr:@std/assert@0.213/assert_rejects";
export { assertStrictEquals } from "jsr:@std/assert@0.213/assert_strict_equals";
export { assertThrows } from "jsr:@std/assert@0.213/assert_throws";
export { unreachable } from "jsr:@std/assert@0.213/unreachable";
export { assert } from "jsr:@std/assert@0.215/assert";
export { assertEquals } from "jsr:@std/assert@0.215/assert_equals";
export { assertInstanceOf } from "jsr:@std/assert@0.215/assert_instance_of";
export { assertRejects } from "jsr:@std/assert@0.215/assert_rejects";
export { assertStrictEquals } from "jsr:@std/assert@0.215/assert_strict_equals";
export { assertThrows } from "jsr:@std/assert@0.215/assert_throws";
export { unreachable } from "jsr:@std/assert@0.215/unreachable";

0 comments on commit 52bccbc

Please sign in to comment.