summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3281be1af6a6586d39c45a6df52569109ae3ddb8 (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
26
# 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",
  "op_crates/crypto"
]
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