From dd139fbfaa8dc608db633ebfe545dafae69b87b9 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 7 Nov 2022 09:00:19 -0800 Subject: [PATCH] Update dependency versions. (#438) Update the github action to node16. And update to memoffset 0.7.1 and criterion 0.4. --- .github/actions/install-rust/action.yml | 2 +- Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/install-rust/action.yml b/.github/actions/install-rust/action.yml index 7a196591..6afc01d6 100644 --- a/.github/actions/install-rust/action.yml +++ b/.github/actions/install-rust/action.yml @@ -8,5 +8,5 @@ inputs: default: 'stable' runs: - using: node12 + using: node16 main: 'main.js' diff --git a/Cargo.toml b/Cargo.toml index 289c99c3..96f2cd77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,11 +75,11 @@ io-lifetimes = { version = "1.0.0-rc1", default-features = false, features = ["c # Don't upgrade to serial_test 0.7 for now because it depends on a # `parking_lot_core` version which is not compatible with our MSRV of 1.48. serial_test = "0.6" -memoffset = "0.6.5" +memoffset = "0.7.1" flate2 = "1.0" [target.'cfg(not(target_os = "emscripten"))'.dev-dependencies] -criterion = "0.3" +criterion = "0.4" [target.'cfg(windows)'.dev-dependencies] ctor = "0.1.21"