Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 6, 2024
1 parent 850bb9b commit 6e54979
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI-WASM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Setup node
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
node-version: 16
check-latest: true
Expand All @@ -41,12 +41,12 @@ jobs:
with:
command: generate-lockfile
- name: Cache cargo registry
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: ~/.cargo/registry
key: x86_64-unknown-linux-gnu-node@16-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: ~/.cargo/git
key: x86_64-unknown-linux-gnu-node@16-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -71,13 +71,13 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Setup node
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
node-version: 16
check-latest: true
cache: yarn
- name: Cache NPM dependencies
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
path: node_modules
key: npm-cache-ubuntu-latest-${{ hashFiles('yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.17.1
18.20.2
6 changes: 3 additions & 3 deletions crates/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ crate-type = ["cdylib"]
[dependencies]
subset_sum = { path = "../subset-sum", features = ["napi-types"] }
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.13.3", default-features = false, features = ["napi4"] }
napi-derive = "2.13.0"
napi = { version = "2.16.5", default-features = false, features = ["napi4"] }
napi-derive = "2.16.4"

[build-dependencies]
napi-build = "2.0.1"
napi-build = "2.1.3"
8 changes: 4 additions & 4 deletions crates/subset-sum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ edition = "2021"
crate-type = ["lib"]

[dependencies]
strum_macros = "0.25.2"
num-traits = "0.2.16"
strum_macros = "0.26.2"
num-traits = "0.2.19"
fn-memo = { version = "1.2", default-features = false }
wasm-bindgen = { version = "^0.2.87", optional = true }
wasm-bindgen = { version = "^0.2.92", optional = true }
instant = { version = "^0.1.12", features = ["wasm-bindgen", "inaccurate"], optional = true }
napi = { version = "^2.13.3", optional = true }
napi = { version = "^2.16.5", optional = true }

[features]
wasm-js = ["wasm-bindgen", "instant"]
Expand Down
4 changes: 2 additions & 2 deletions crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib", "rlib"]

[dependencies]
wasm-bindgen = { version = "0.2.87" }
wasm-bindgen = { version = "0.2.92" }
subset_sum = { path = "../subset-sum", features = ["wasm-js"] }

# The `console_error_panic_hook` crate provides better debugging of panics by
Expand All @@ -25,4 +25,4 @@ subset_sum = { path = "../subset-sum", features = ["wasm-js"] }
#wee_alloc = { version = "0.4.5", optional = true }

[dev-dependencies]
wasm-bindgen-test = "0.3.37"
wasm-bindgen-test = "0.3.42"
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "2.16.3"
"@napi-rs/cli": "2.18.3"
},
"engines": {
"node": ">= 10"
Expand All @@ -39,8 +39,8 @@
"description": "Fast Node.js subset sum implementation",
"repository": "https://github.com/leo91000/subset-sum",
"volta": {
"node": "18.17.1",
"yarn": "1.22.19",
"npm": "9.8.1"
"node": "18.20.2",
"yarn": "1.22.22",
"npm": "9.9.3"
}
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# yarn lockfile v1


"@napi-rs/cli@2.16.3":
version "2.16.3"
resolved "https://registry.yarnpkg.com/@napi-rs/cli/-/cli-2.16.3.tgz#6943d0614bbb4900a97b18ae074f735864f78c4b"
integrity sha512-3mLNPlbbOhpbIUKicLrJtIearlHXUuXL3UeueYyRRplpVMNkdn8xCyzY6PcYZi3JXR8bmCOiWgkVmLnrSL7DKw==
"@napi-rs/cli@2.18.3":
version "2.18.3"
resolved "https://registry.yarnpkg.com/@napi-rs/cli/-/cli-2.18.3.tgz#0f1c3cd7b757aa49cfbf52fc864d40881ee534c2"
integrity sha512-L0f4kP0dyG8W5Qtc7MtP73VvLLrOLyRcUEBzknIfu8Jk4Jfhrsx1ItMHgyalYqMSslWdY3ojEfAaU5sx1VyeQQ==

0 comments on commit 6e54979

Please sign in to comment.