napi-rs/test_module/Cargo.toml

18 lines
392 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"
napi = { path = "../napi", features = ["libuv", "tokio_rt"] }
napi-derive = { path = "../napi-derive" }
tokio = { version = "0.2", features = ["default", "fs"]}
2020-02-18 22:09:17 +09:00
[build-dependencies]
napi-build = { path = "../build" }