napi-rs/memory-testing/Cargo.toml

30 lines
594 B
TOML
Raw Normal View History

2021-05-28 19:50:16 +09:00
[package]
authors = ["LongYinan <lynweklm@gmail.com>"]
2021-12-08 13:52:33 +09:00
edition = "2021"
2021-05-28 19:50:16 +09:00
name = "memory-testing"
2021-11-01 00:32:40 +09:00
publish = false
2021-05-28 19:50:16 +09:00
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
futures = "0.3"
2022-02-10 20:00:38 +09:00
napi = { path = "../crates/napi", features = [
"tokio_rt",
"serde-json",
"latin1",
"compat-mode",
] }
napi-derive = { path = "../crates/macro", default-features = false, features = [
"compat-mode",
] }
2021-05-28 19:50:16 +09:00
serde = "1"
serde_bytes = "0.11"
serde_derive = "1"
serde_json = "1"
2022-02-10 20:00:38 +09:00
tokio = { version = "1", features = ["default", "fs"] }
2021-05-28 19:50:16 +09:00
[build-dependencies]
2022-02-10 20:00:38 +09:00
napi-build = { path = "../crates/build" }