blob: 4072755635aaef762a6d97ca49b245bd1009fb2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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"
|