2024-01-01 14:58:21 -05:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_napi"
|
2024-11-10 02:42:18 -05:00
|
|
|
version = "0.108.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-10-05 10:06:44 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2022-10-05 10:06:44 -04:00
|
|
|
description = "NAPI implementation for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_core.workspace = true
|
2024-06-06 23:37:53 -04:00
|
|
|
deno_permissions.workspace = true
|
2024-10-24 03:13:54 -04:00
|
|
|
libc.workspace = true
|
2022-10-05 10:06:44 -04:00
|
|
|
libloading = { version = "0.7" }
|
2024-10-24 03:13:54 -04:00
|
|
|
log.workspace = true
|
|
|
|
napi_sym.workspace = true
|
2024-10-17 15:51:33 -04:00
|
|
|
thiserror.workspace = true
|
2024-10-24 03:13:54 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
windows-sys.workspace = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
libuv-sys-lite = "=1.48.2"
|