Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dcdunkan committed Feb 2, 2023
1 parent 552543e commit 945797b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ export {
fromFileUrl,
join,
resolve,
} from "https://deno.land/std@0.175.0/path/mod.ts";
} from "https://deno.land/std@0.176.0/path/mod.ts";

// std/node/
export { Buffer } from "https://deno.land/std@0.175.0/node/buffer.ts";
export { Buffer } from "https://deno.land/std@0.176.0/node/buffer.ts";

// x/
export { getWords } from "https://deno.land/x/dryptography@v0.1.4/aes/utils/words.ts";
Expand Down Expand Up @@ -37,12 +37,12 @@ export {
Parser,
} from "https://ghc.deno.dev/tbjgolden/deno-htmlparser2@1f76cdf/htmlparser2/Parser.ts";

import { type Socket as Socket_ } from "https://deno.land/std@0.175.0/node/net.ts";
import { type Socket as Socket_ } from "https://deno.land/std@0.176.0/node/net.ts";

export let Socket = null as unknown as typeof Socket_;

if (typeof document === "undefined") {
Socket = (await import("https://deno.land/std@0.175.0/node/net.ts")).Socket;
Socket = (await import("https://deno.land/std@0.176.0/node/net.ts")).Socket;
}

import { type SocksClient as SocksClient_ } from "https://deno.land/x/deno_socks@v2.6.1/mod.ts";
Expand Down

0 comments on commit 945797b

Please sign in to comment.