diff options
Diffstat (limited to 'ext/napi/Cargo.toml')
-rw-r--r-- | ext/napi/Cargo.toml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml index ade789ff8..df3ec0287 100644 --- a/ext/napi/Cargo.toml +++ b/ext/napi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_napi" -version = "0.102.0" +version = "0.108.0" authors.workspace = true edition.workspace = true license.workspace = true @@ -16,4 +16,14 @@ path = "lib.rs" [dependencies] deno_core.workspace = true deno_permissions.workspace = true +libc.workspace = true libloading = { version = "0.7" } +log.workspace = true +napi_sym.workspace = true +thiserror.workspace = true + +[target.'cfg(windows)'.dependencies] +windows-sys.workspace = true + +[dev-dependencies] +libuv-sys-lite = "=1.48.2" |