mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
23 lines
317 B
TOML
23 lines
317 B
TOML
[workspace]
|
|
members = [
|
|
"cli",
|
|
"core",
|
|
"test_plugin",
|
|
"test_util",
|
|
"op_crates/fetch",
|
|
"op_crates/web",
|
|
]
|
|
exclude = [
|
|
"std/hash/_wasm"
|
|
]
|
|
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 'z' # Optimize for size
|
|
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 'z' # Optimize for size
|