Skip to content

Commit

Permalink
bump std
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Aug 28, 2021
1 parent b7de042 commit 59ef9ee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://x.nest.land/eggs@0.3.6/src/schema.json",
"$schema": "https://x.nest.land/eggs@0.3.8/src/schema.json",
"name": "parsec",
"entry": "./mod.ts",
"description": "Tiny body parser for Deno. Port of the milliparsec library.",
Expand Down
2 changes: 1 addition & 1 deletion examples/vanilla.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { serve } from 'https://deno.land/std@0.104.0/http/server.ts'
import { serve } from 'https://deno.land/std@0.106.0/http/server.ts'
import { json, ReqWithBody } from '../mod.ts'

const s = serve({ port: 3000 })
Expand Down
6 changes: 3 additions & 3 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as qs from 'https://deno.land/std@0.104.0/node/querystring.ts'
import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts'
import { readAll } from 'https://deno.land/std@0.104.0/io/mod.ts'
import * as qs from 'https://deno.land/std@0.106.0/node/querystring.ts'
import { ServerRequest } from 'https://deno.land/std@0.106.0/http/server.ts'
import { readAll } from 'https://deno.land/std@0.106.0/io/mod.ts'

type Req = Pick<ServerRequest, 'body' | 'headers'>

Expand Down
2 changes: 1 addition & 1 deletion mod_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { superdeno } from 'https://deno.land/x/superdeno@4.4.0/mod.ts'
import { ServerRequest } from 'https://deno.land/std@0.104.0/http/server.ts'
import { ServerRequest } from 'https://deno.land/std@0.106.0/http/server.ts'
import { bodyParser, json, ReqWithBody, urlencoded } from './mod.ts'
import { describe, it, run } from 'https://deno.land/x/tincan@0.2.1/mod.ts'

Expand Down

0 comments on commit 59ef9ee

Please sign in to comment.