Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Jun 27, 2021
1 parent c8ee994 commit f5ecac7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export { vary } from 'https://deno.land/x/vary@1.0.0/mod.ts'
export { isIP } from 'https://deno.land/x/isIP@1.0.0/mod.ts'
export { Accepts } from 'https://deno.land/x/accepts@2.1.0/mod.ts'
export { encodeUrl } from 'https://deno.land/x/encodeurl@1.0.0/mod.ts'
export { charset, contentType, lookup } from 'https://deno.land/x/media_types@v2.8.4/mod.ts'
export { charset, contentType, lookup } from 'https://deno.land/x/media_types@v2.9.0/mod.ts'
export { parse as rg } from 'https://deno.land/x/regexparam@v2.0.0/src/index.js'
export { forwarded } from 'https://deno.land/x/forwarded@0.0.7/mod.ts'
export * from 'https://deno.land/x/proxy_addr@0.0.8/mod.ts'
Expand Down
2 changes: 1 addition & 1 deletion examples/postgresql/server.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { App } from '../../mod.ts'
import { Client } from 'https://deno.land/x/postgres@v0.11.2/mod.ts'
import { Client } from 'https://deno.land/x/postgres@v0.11.3/mod.ts'
import { json } from 'https://deno.land/x/parsec/mod.ts'

const app = new App()
Expand Down
2 changes: 1 addition & 1 deletion extensions/res/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { format, parse } from 'https://deno.land/x/content_type/mod.ts'
import { etag as eTag } from 'https://deno.land/x/opine@1.4.0/src/utils/etag.ts'
import { etag as eTag } from 'https://deno.land/x/opine@1.5.3/src/utils/etag.ts'
import { lookup } from '../../deps.ts'

export const createETag = (body: Parameters<typeof eTag>[0]) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/util.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getFreePort } from 'https://deno.land/x/free_port@v1.2.0/mod.ts'
import { superdeno } from 'https://deno.land/x/superdeno@4.2.1/mod.ts'
import { superdeno } from 'https://deno.land/x/superdeno@4.3.0/mod.ts'
import { App, Handler, AppConstructor, Request, Response } from '../mod.ts'

const random = (min: number, max: number): number => Math.round(Math.random() * (max - min)) + min
Expand Down

0 comments on commit f5ecac7

Please sign in to comment.