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