From f69b4f6ee88d051e7e8b72816faa3833a1b30fad Mon Sep 17 00:00:00 2001 From: Joshua Liebow-Feeser Date: Mon, 23 Oct 2023 15:44:11 +0000 Subject: [PATCH] Update memoffset to 0.9.0 Implemented as part of https://github.com/rust-lang/rust/issues/111839 --- lib/types/Cargo.toml | 2 +- lib/vm/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types/Cargo.toml b/lib/types/Cargo.toml index 9a073aa0b2c..cd533953420 100644 --- a/lib/types/Cargo.toml +++ b/lib/types/Cargo.toml @@ -25,7 +25,7 @@ enumset = "1.0" bytecheck = "0.6.8" [dev-dependencies] -memoffset = "0.6" +memoffset = "0.9.0" [features] default = ["std"] diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index 038cfaa0d29..bc23868e2fc 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -15,7 +15,7 @@ version.workspace = true [dependencies] wasmer-types = { path = "../types", version = "=4.2.2" } libc = { version = "^0.2", default-features = false } -memoffset = "0.8.0" +memoffset = "0.9.0" indexmap = { version = "1.6" } thiserror = "1.0" more-asserts = "0.2"