2022-10-05 10:06:44 -04:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_napi"
|
2022-10-06 16:49:40 -04:00
|
|
|
version = "0.2.0"
|
2022-10-05 10:06:44 -04:00
|
|
|
authors = ["the Deno authors"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
description = "NAPI implementation for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-06 16:49:40 -04:00
|
|
|
deno_core = { version = "0.154.0", path = "../../core" }
|
2022-10-05 10:06:44 -04:00
|
|
|
libloading = { version = "0.7" }
|