napi-rs/examples/napi/Cargo.toml
2021-10-31 23:33:51 +08:00

21 lines
485 B
TOML

[package]
authors = ["LongYinan <lynweklm@gmail.com>"]
edition = "2018"
name = "napi-examples"
publish = false
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
futures = "0.3"
napi = {path = "../../crates/napi", features = ["full"]}
napi-derive = {path = "../../crates/macro", features = ["type-def"]}
serde = "1"
serde_derive = "1"
serde_json = "1"
tokio = {version = "1", features = ["default", "fs"]}
[build-dependencies]
napi-build = {path = "../../crates/build"}