-
Notifications
You must be signed in to change notification settings - Fork 359
/
Cargo.toml
47 lines (44 loc) · 991 Bytes
/
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
42
43
44
45
46
47
[workspace]
resolver = "2"
# Patch doesn't play well with *, so we have to list individual members
# See https://github.com/rust-lang/cargo/issues/14717
members = [
"modules/llrt_abort",
"modules/llrt_buffer",
"modules/llrt_child_process",
"modules/llrt_crypto",
"modules/llrt_events",
"modules/llrt_exceptions",
"modules/llrt_fs",
"modules/llrt_http",
"modules/llrt_json",
"modules/llrt_navigator",
"modules/llrt_net",
"modules/llrt_os",
"modules/llrt_path",
"modules/llrt_perf_hooks",
"modules/llrt_process",
"modules/llrt_stream",
"modules/llrt_timers",
"modules/llrt_url",
"modules/llrt_zlib",
"libs/llrt_build",
"libs/llrt_compression",
"libs/llrt_test",
"libs/llrt_utils",
"llrt_core",
"llrt_modules",
"llrt",
]
[profile.flame]
inherits = "release"
strip = false
debug = true
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = 3
panic = "abort"
[profile.test]
opt-level = 3 #required for large number parsing