napi-rs/Cargo.toml
LongYinan 46cbcf3ff1
feat(cli): allow sync fs operation between workers/mainThread (#2064)
* feat(cli): allow sync fs operation between workers/mainThread

* allow sync fs operation between workers/mainThread (#2065)

* Fix

* Update fixture

* flaky test

* Fix cross compile target

* Update zig

* macos-cross test was filtered

---------

Co-authored-by: Toyo Li <lifenglin314@outlook.com>
2024-04-23 12:14:06 +08:00

29 lines
467 B
TOML

[workspace]
resolver = "2"
members = [
"./crates/backend",
"./crates/build",
"./crates/macro",
"./crates/napi",
"./crates/sys",
"./examples/napi",
"./examples/napi-shared",
"./examples/napi-compat-mode",
"./examples/binary",
"./bench",
"./memory-testing",
]
exclude = ["./testing"]
[profile.release]
lto = true
[profile.wasi]
inherits = "release"
opt-level = "z"
debug = 'full'
[profile.napi-rs-custom]
inherits = "dev"
codegen-units = 1024