mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
20 lines
411 B
TOML
20 lines
411 B
TOML
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "test_napi"
|
|
version = "0.1.0"
|
|
authors = ["the deno authors"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
napi-sys = { version = "2.2.2", default-features = false, features = ["napi7"] }
|
|
|
|
[dev-dependencies]
|
|
test_util = { path = "../test_util" }
|
|
|
|
[build-dependencies]
|
|
napi-build = "1"
|