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

[workspace]
members = [
  "cli",
  "core",
  "runtime",
  "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