-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
executable file
·41 lines (39 loc) · 1 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/dash_middle",
"crates/dash_lexer",
"crates/dash_parser",
"crates/dash_compiler",
"crates/dash_optimizer",
"crates/dash_vm",
"cli",
"testrunner",
"crates/dash_regex",
"crates/dash_proc_macro",
"crates/dash_rt",
"crates/dash_dlloader",
"crates/dash_decompiler",
"crates/dash_rt_modules",
"crates/dash_rt_http",
"crates/dash_rt_fs",
"crates/dash_rt_fetch",
"crates/dash_rt_script_modules",
"crates/dash_rt_timers",
"crates/dash_log",
"crates/dash_rt_net",
"crates/dash_typed_cfg",
"crates/dash_node_impl",
"lints",
"lints/tests/ui",
# "basically dead" crates (need substantial effort to get them up and running again, fell behind with too many internal changes):
# (commented out so the project can be built in the root dir)
#
# "crates/dash_wasm",
# "crates/dash_llvm_jit_backend",
]
resolver = "2"
[profile.release]
lto = "fat"
codegen-units = 1
[profile.dev]
debug = true