From 06b26da347649b4abe50e6586dfcb7681c0cb04b Mon Sep 17 00:00:00 2001 From: v1rtl Date: Tue, 14 Feb 2023 22:04:41 +0200 Subject: [PATCH] bump std --- mod.ts | 2 +- mod_test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mod.ts b/mod.ts index 376ddf2..0715c58 100644 --- a/mod.ts +++ b/mod.ts @@ -1,4 +1,4 @@ -import { ConnInfo } from 'https://deno.land/std@0.175.0/http/server.ts' +import { ConnInfo } from 'https://deno.land/std@0.177.0/http/server.ts' export type RequestWithConnection = Request & { conn: ConnInfo } diff --git a/mod_test.ts b/mod_test.ts index 54ac48e..eee52fe 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.175.0/http/server.ts' +import { ConnInfo } from 'https://deno.land/std@0.177.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 =>