napi-rs/examples/napi/Cargo.toml

20 lines
474 B
TOML
Raw Normal View History

[package]
authors = ["LongYinan <lynweklm@gmail.com>"]
edition = "2018"
name = "napi-examples"
version = "0.1.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
napi-derive = { path = "../../crates/macro", features = ["type-def"] }
2021-10-25 01:00:31 +09:00
napi = { path = "../../crates/napi", features = ["full"] }
2021-09-24 18:01:54 +09:00
serde = "1"
serde_derive = "1"
serde_json = "1"
2021-10-25 01:00:31 +09:00
tokio = {version = "1", features = ["default", "fs"]}
futures = "0.3"
[build-dependencies]
napi-build = { path = "../../crates/build" }