Skip to content

Commit

Permalink
bump std
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Mar 23, 2023
1 parent 3ff1df4 commit cac339e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example.ts
@@ -1,5 +1,5 @@
import { compression } from './mod.ts'
import { Server } from 'https://deno.land/std@0.179.0/http/server.ts'
import { Server } from 'https://deno.land/std@0.181.0/http/server.ts'

const s = new Server({
handler: async (req) => {
Expand Down
4 changes: 2 additions & 2 deletions mod.ts
@@ -1,4 +1,4 @@
import { readAll } from 'https://deno.land/std@0.179.0/streams/read_all.ts'
import { readAll } from 'https://deno.land/std@0.181.0/streams/read_all.ts'
import { compress as brotli } from 'https://deno.land/x/brotli@0.1.7/mod.ts'
import { Foras } from 'https://deno.land/x/foras@2.0.8/src/deno/mod.ts'
import { Accepts } from 'https://deno.land/x/accepts@2.1.1/mod.ts'
Expand Down Expand Up @@ -40,7 +40,7 @@ export type CompressionOptions = Partial<{
* @example
* ```ts
import { compression } from 'https://deno.land/x/http_compression/mod.ts'
import { Server } from 'https://deno.land/std@0.179.0/http/server.ts'
import { Server } from 'https://deno.land/std@0.181.0/http/server.ts'
new Server({
handler: async (req) => {
Expand Down

0 comments on commit cac339e

Please sign in to comment.