fix: bump napi version and commit lockfile

This commit is contained in:
DecDuck
2025-07-02 20:20:19 +10:00
parent 8f4b2a6c6d
commit 59ca57ee1b
4 changed files with 1197 additions and 4 deletions

1
.gitignore vendored
View File

@ -186,7 +186,6 @@ $RECYCLE.BIN/
#Added by cargo #Added by cargo
/target /target
Cargo.lock
.pnp.* .pnp.*
.yarn/* .yarn/*

1194
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,12 +9,12 @@ crate-type = ["cdylib"]
[dependencies] [dependencies]
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "3.0.0-alpha.33", default-features = false, features = [ napi = { version = "3.0.0-beta.11", default-features = false, features = [
"napi4", "napi4",
"async", "async",
"web_stream", "web_stream",
] } ] }
napi-derive = "3.0.0-alpha.33" napi-derive = "3.0.0-alpha.11"
hex = "0.4.3" hex = "0.4.3"
serde_json = "1.0.128" serde_json = "1.0.128"
md5 = "0.7.0" md5 = "0.7.0"

View File

@ -1,6 +1,6 @@
{ {
"name": "@drop-oss/droplet", "name": "@drop-oss/droplet",
"version": "1.4.3", "version": "1.5.0",
"main": "index.js", "main": "index.js",
"types": "index.d.ts", "types": "index.d.ts",
"napi": { "napi": {