-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmoon.pkg
More file actions
74 lines (70 loc) · 2.06 KB
/
Copy pathmoon.pkg
File metadata and controls
74 lines (70 loc) · 2.06 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import {
"moonbitlang/core/cmp",
"moonbitlang/core/random",
"moonbitlang/core/string",
"moonbitlang/core/buffer",
"moonbitlang/core/json",
"moonbitlang/core/encoding/utf8",
"moonbitlang/x/crypto",
"moonbitlang/async",
"moonbitlang/async/io",
"moonbitlang/async/socket",
"moonbitlang/async/tls",
"moonbitlang/async/gzip",
"moonbitlang/async/js_async",
"bikallem/compress/brotli",
"bikallem/compress/flate",
"bikallem/compress/zstd",
}
import {
"moonbitlang/core/encoding/utf8",
"moonbitlang/async",
} for "test"
import {
"moonbitlang/core/bench",
"moonbitlang/core/encoding/utf8",
"moonbitlang/async",
"moonbitlang/async/fs",
} for "wbtest"
warnings = "-29"
options(
targets: {
"aes128.mbt": [ "native" ],
"bench_wbtest.mbt": [ "native" ],
"builder.mbt": [ "native", "js" ],
"builder_wbtest.mbt": [ "native", "js" ],
"client.js.mbt": [ "js" ],
"client.mbt": [ "native" ],
"cookie.mbt": [ "native", "js" ],
"cookie_wbtest.mbt": [ "native" ],
"deprecated.mbt": [ "native", "js" ],
"h2.mbt": [ "native" ],
"h3.mbt": [ "native" ],
"hpack.mbt": [ "native" ],
"hpack_huffman.mbt": [ "native" ],
"parser.mbt": [ "native" ],
"parser_wbtest.mbt": [ "native" ],
"qpack.mbt": [ "native" ],
"quic.mbt": [ "native" ],
"quic_crypto.mbt": [ "native" ],
"quic_frame.mbt": [ "native" ],
"quic_packet.mbt": [ "native" ],
"quic_packet_space.mbt": [ "native" ],
"quic_transport_parameters.mbt": [ "native" ],
"quic_udp.mbt": [ "native" ],
"request.mbt": [ "native", "js" ],
"resolve_url_wbtest.mbt": [ "native" ],
"rsa_pss.mbt": [ "native" ],
"send.mbt": [ "native" ],
"send_wbtest.mbt": [ "native" ],
"tls13_client_hello.mbt": [ "native" ],
"tls13_handshake_parser.mbt": [ "native" ],
"tls13_handshake_state.mbt": [ "native" ],
"tls13_key_schedule.mbt": [ "native" ],
"types.mbt": [ "native", "js" ],
"utils.mbt": [ "native" ],
"wasm_unused_imports.mbt": [ "wasm" ],
"x25519.mbt": [ "native" ],
"x509_der.mbt": [ "native" ],
},
)