napi-rs/test_module/Cargo.toml

22 lines
485 B
TOML
Raw Normal View History

2018-04-28 17:26:38 +09:00
[package]
name = "test-module"
version = "0.1.0"
authors = ["LongYinan <lynweklm@gmail.com>"]
2020-02-18 22:09:17 +09:00
edition = "2018"
2018-04-28 17:26:38 +09:00
[lib]
2020-02-18 22:09:17 +09:00
crate-type = ["cdylib"]
2018-04-28 17:26:38 +09:00
[dependencies]
futures = "0.3"
2020-09-03 20:11:30 +09:00
napi = { path = "../napi", features = ["libuv", "tokio_rt", "serde-json", "latin1"] }
napi-derive = { path = "../napi-derive" }
2020-08-26 01:07:27 +09:00
serde = "1"
serde_bytes = "0.11"
serde_derive = "1"
serde_json = "1"
tokio = { version = "0.2", features = ["default", "fs"]}
2020-02-18 22:09:17 +09:00
[build-dependencies]
napi-build = { path = "../build" }