Skip to content

Commit

Permalink
bump std
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Jul 30, 2021
1 parent 1e85954 commit 0107a40
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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.101.0/http/server.ts'
import { serve } from 'https://deno.land/std@0.103.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.101.0/node/querystring.ts'
import { ServerRequest } from 'https://deno.land/std@0.101.0/http/server.ts'
import { readAll } from 'https://deno.land/std@0.101.0/io/mod.ts'
import * as qs from 'https://deno.land/std@0.103.0/node/querystring.ts'
import { ServerRequest } from 'https://deno.land/std@0.103.0/http/server.ts'
import { readAll } from 'https://deno.land/std@0.103.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.101.0/http/server.ts'
import { ServerRequest } from 'https://deno.land/std@0.103.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 0107a40

Please sign in to comment.