From 7195a4ba978211ad66f5150318c44ae95af61bcf Mon Sep 17 00:00:00 2001 From: v1rtl Date: Sat, 28 Jan 2023 17:21:51 +0200 Subject: [PATCH] bump std --- egg.json | 2 +- mod.ts | 2 +- mod_test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/egg.json b/egg.json index 7a424de..47e35f7 100644 --- a/egg.json +++ b/egg.json @@ -4,7 +4,7 @@ "entry": "./mod.ts", "description": "Tiny body parser for Deno. Port of the milliparsec library.", "homepage": "https://github.com/deno-libs/parsec", - "version": "0.1.0", + "version": "0.1.1", "files": [ "mod.ts", "README.md" diff --git a/mod.ts b/mod.ts index d54be1a..62bfb7e 100644 --- a/mod.ts +++ b/mod.ts @@ -1,4 +1,4 @@ -import * as qs from 'https://deno.land/std@0.111.0/node/querystring.ts' +import * as qs from 'https://deno.land/std@0.130.0/node/querystring.ts' /** * Request interface extension with additional `parsedBody` property (where parsed body gets stored) diff --git a/mod_test.ts b/mod_test.ts index 1dde78c..b651984 100644 --- a/mod_test.ts +++ b/mod_test.ts @@ -1,4 +1,4 @@ -import { superdeno } from 'https://deno.land/x/superdeno@4.6.0/mod.ts' +import { superdeno } from 'https://deno.land/x/superdeno@4.8.0/mod.ts' import { bodyParser, json, ReqWithBody, urlencoded } from './mod.ts' import { describe, it, run } from 'https://deno.land/x/tincan@1.0.0/mod.ts'