From 61a32177d957c3f738585c2c4ea1d09949b4984b Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Thu, 13 Apr 2023 22:21:41 +0200 Subject: [PATCH] deps: Upgrade memoffset Removes a duplicate dependency. --- Cargo.lock | 2 +- lib/vm/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8dc870c7c60..f75080f4928 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5682,7 +5682,7 @@ dependencies = [ "lazy_static", "libc", "mach", - "memoffset 0.6.5", + "memoffset 0.8.0", "more-asserts", "region", "scopeguard", diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index 99fe366d6f3..325e66a3aa2 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] wasmer-types = { path = "../types", version = "=3.2.0-beta.2" } libc = { version = "^0.2", default-features = false } -memoffset = "0.6" +memoffset = "0.8.0" indexmap = { version = "1.6" } thiserror = "1.0" more-asserts = "0.2"