From 88d2c8222e7901aa7c55062123eaa685df1efae4 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 69362247090..8cab70fa04d 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.3" } 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"