13d0ce075e
* Integrate with emnapi * resolve conflict * ignore wasm * generate wasi file * Add wasi test to workflow * Fix wasi template * emnapi new initialize api * Finish test * Purne tsconfig * Generate wasi worker * Fix electron test * Finalize check * Noop adjust_external_memory * Apply cr suggestions
23 lines
484 B
TOML
23 lines
484 B
TOML
[package]
|
|
authors = ["LongYinan <lynweklm@gmail.com>"]
|
|
edition = "2021"
|
|
name = "napi-shared"
|
|
publish = false
|
|
version = "0.1.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[dependencies]
|
|
napi = { path = "../../crates/napi", default-features = false, features = [
|
|
"napi8",
|
|
"serde-json",
|
|
"async",
|
|
"experimental",
|
|
"latin1",
|
|
"chrono_date",
|
|
] }
|
|
napi-derive = { path = "../../crates/macro", features = ["type-def"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = { path = "../../crates/build" }
|