napi-rs/bench/Cargo.toml

24 lines
641 B
TOML
Raw Normal View History

[package]
authors = ["LongYinan <lynweklm@gmail.com>"]
edition = "2018"
2020-10-11 22:36:14 +09:00
name = "napi-bench"
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
2021-05-14 00:36:39 +09:00
napi = {path = "../napi", features = ["napi4", "serde-json"]}
2020-10-11 22:36:14 +09:00
napi-derive = {path = "../napi-derive"}
2021-05-14 00:36:39 +09:00
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]
2020-10-11 22:36:14 +09:00
napi-build = {path = "../build"}