23 lines
641 B
TOML
23 lines
641 B
TOML
[package]
|
|
authors = ["LongYinan <lynweklm@gmail.com>"]
|
|
edition = "2018"
|
|
name = "napi-bench"
|
|
version = "0.1.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
napi = {path = "../napi", features = ["napi4", "serde-json"]}
|
|
napi-derive = {path = "../napi-derive"}
|
|
serde = "1"
|
|
serde_json = "1"
|
|
|
|
[target.'cfg(all(unix, not(target_env = "musl"), not(target_arch = "aarch64"), not(target_arch = "arm")))'.dependencies]
|
|
jemallocator = {version = "0.3", features = ["disable_initial_exec_tls"]}
|
|
|
|
[target.'cfg(all(windows, not(target_arch = "aarch64")))'.dependencies]
|
|
mimalloc = {version = "0.1"}
|
|
|
|
[build-dependencies]
|
|
napi-build = {path = "../build"}
|