forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.ts
56 lines (51 loc) · 1.68 KB
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2018-2021 the oak authors. All rights reserved. MIT license.
// This file contains the external dependencies that oak depends upon
// `std` dependencies
export {
concat,
copy as copyBytes,
equals,
} from "https://deno.land/[email protected]/bytes/mod.ts";
export { createHash } from "https://deno.land/[email protected]/hash/mod.ts";
export { HmacSha256 } from "https://deno.land/[email protected]/hash/sha256.ts";
export { serve, serveTLS } from "https://deno.land/[email protected]/http/server.ts";
export {
Status,
STATUS_TEXT,
} from "https://deno.land/[email protected]/http/http_status.ts";
export { Buffer } from "https://deno.land/[email protected]/io/buffer.ts";
export { BufReader, BufWriter } from "https://deno.land/[email protected]/io/bufio.ts";
export { LimitedReader } from "https://deno.land/[email protected]/io/readers.ts";
export { readerFromStreamReader } from "https://deno.land/[email protected]/io/streams.ts";
export { readAll, writeAll } from "https://deno.land/[email protected]/io/util.ts";
export {
basename,
extname,
isAbsolute,
join,
normalize,
parse,
sep,
} from "https://deno.land/[email protected]/path/mod.ts";
export { assert } from "https://deno.land/[email protected]/testing/asserts.ts";
export {
acceptable,
acceptWebSocket,
} from "https://deno.land/[email protected]/ws/mod.ts";
export type { WebSocket } from "https://deno.land/[email protected]/ws/mod.ts";
// 3rd party dependencies
export {
contentType,
extension,
lookup,
} from "https://deno.land/x/[email protected]/mod.ts";
export {
compile,
parse as pathParse,
pathToRegexp,
} from "https://deno.land/x/[email protected]/index.ts";
export type {
Key,
ParseOptions,
TokensToRegexpOptions,
} from "https://deno.land/x/[email protected]/index.ts";