summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: eccd733d55d28a560efd90fa6110f6cbdf46c7da (plain)
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
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

[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