2020-02-18 21:09:17 +08:00
|
|
|
[workspace]
|
2022-08-14 08:03:31 +08:00
|
|
|
resolver = "2"
|
2020-02-18 21:09:17 +08:00
|
|
|
members = [
|
2021-09-23 01:29:09 +08:00
|
|
|
"./crates/backend",
|
|
|
|
"./crates/build",
|
|
|
|
"./crates/macro",
|
|
|
|
"./crates/napi",
|
|
|
|
"./crates/sys",
|
|
|
|
"./examples/napi",
|
2023-03-21 18:12:52 +08:00
|
|
|
"./examples/napi-shared",
|
2021-09-23 01:29:09 +08:00
|
|
|
"./examples/napi-compat-mode",
|
2022-03-26 17:01:12 +08:00
|
|
|
"./examples/binary",
|
2021-05-28 18:50:16 +08:00
|
|
|
"./bench",
|
|
|
|
"./memory-testing",
|
2020-02-18 21:09:17 +08:00
|
|
|
]
|
2021-06-21 23:09:13 +08:00
|
|
|
|
2022-02-10 19:00:38 +08:00
|
|
|
exclude = ["./testing"]
|
2021-11-19 14:58:21 +08:00
|
|
|
|
2021-06-21 23:09:13 +08:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2023-05-27 12:00:43 +08:00
|
|
|
|
|
|
|
[profile.napi-rs-custom]
|
|
|
|
inherits = "dev"
|
|
|
|
codegen-units = 1024
|