deno/Cargo.toml
Bartek Iwańczuk 2e74f164b6
refactor: deno_runtime crate (#8640)
This commit moves Deno JS runtime, ops, permissions and
inspector implementation to new "deno_runtime" crate located
in "runtime/" directory.

Details in "runtime/README.md".

Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
2020-12-13 19:45:53 +01:00

28 lines
426 B
TOML

# 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