2021-01-11 02:59:07 +00:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-21 12:26:41 +00:00
|
|
|
|
2019-02-27 00:23:30 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2019-03-30 18:45:36 +00:00
|
|
|
"cli",
|
2019-02-27 00:23:30 +00:00
|
|
|
"core",
|
2020-12-13 18:45:53 +00:00
|
|
|
"runtime",
|
2020-06-18 15:54:55 +00:00
|
|
|
"test_plugin",
|
|
|
|
"test_util",
|
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 15:17:18 +00:00
|
|
|
"op_crates/crypto",
|
2020-09-18 13:20:55 +00:00
|
|
|
"op_crates/fetch",
|
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 15:17:18 +00:00
|
|
|
"op_crates/url",
|
2020-08-07 14:55:02 +00:00
|
|
|
"op_crates/web",
|
chore: split web op crate (#9635)
This commit starts splitting out the deno_web op crate into multiple
smaller crates. This commit splits out WebIDL and URL API, but in the
future I want to split out each spec into its own crate. That means we
will have (in rough order of loading): `webidl`, `dom`, `streams`,
`console`, `encoding`, `url`, `file`, `fetch`, `websocket`, and
`webgpu` crates.
2021-03-12 15:17:18 +00:00
|
|
|
"op_crates/webgpu",
|
|
|
|
"op_crates/webidl",
|
|
|
|
"op_crates/websocket",
|
2019-02-27 00:23:30 +00:00
|
|
|
]
|
2020-06-16 21:12:50 +00:00
|
|
|
exclude = [
|
|
|
|
"std/hash/_wasm"
|
|
|
|
]
|
2020-07-28 17:37:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
opt-level = 'z' # Optimize for size
|
2020-08-28 13:03:50 +00:00
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
opt-level = 'z' # Optimize for size
|
2021-02-18 14:46:31 +00:00
|
|
|
|
|
|
|
# Optimize these packages for perf
|
|
|
|
[profile.release.package.rand]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package.flate2]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package.brotli]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package.miniz_oxide]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package.async-compression]
|
|
|
|
opt-level = 3
|
|
|
|
[profile.release.package.brotli-decompressor]
|
|
|
|
opt-level = 3
|