diff --git a/mod.ts b/mod.ts index 0715c58..7bb2839 100644 --- a/mod.ts +++ b/mod.ts @@ -1,4 +1,4 @@ -import { ConnInfo } from 'https://deno.land/std@0.177.0/http/server.ts' +import { ConnInfo } from 'https://deno.land/std@0.178.0/http/server.ts' export type RequestWithConnection = Request & { conn: ConnInfo } diff --git a/mod_test.ts b/mod_test.ts index eee52fe..9cb1e0c 100644 --- a/mod_test.ts +++ b/mod_test.ts @@ -1,6 +1,6 @@ import type { RequestWithConnection } from './mod.ts' import { forwarded } from './mod.ts' -import { ConnInfo } from 'https://deno.land/std@0.177.0/http/server.ts' +import { ConnInfo } from 'https://deno.land/std@0.178.0/http/server.ts' import { describe, it, expect, run } from 'https://deno.land/x/tincan@1.0.1/mod.ts' const createReq = (hostname: string, headers?: Record): RequestWithConnection =>