From 9ca410a7930c65c57b374b29397485f4a22053e6 Mon Sep 17 00:00:00 2001 From: Brian Caswell Date: Mon, 5 Feb 2024 23:19:00 -0500 Subject: [PATCH] update minidump-common dependencies (#99) --- Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a1b86d44..bf7c55f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,15 +14,15 @@ byteorder = "1.4" cfg-if = "1.0" crash-context = "0.6" memoffset = "0.9" -minidump-common = "0.19.1" -scroll = "0.11" +minidump-common = "0.20.0" +scroll = "0.12" tempfile = "3.8" thiserror = "1.0" [target.'cfg(unix)'.dependencies] libc = "0.2" goblin = "0.7.1" -memmap2 = "0.8" +memmap2 = "0.9" [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies] nix = { version = "0.27", default-features = false, features = [ @@ -45,14 +45,14 @@ mach2 = "0.4" [dev-dependencies] # Minidump-processor is async so we need an executor futures = { version = "0.3", features = ["executor"] } -minidump = "0.19" -memmap2 = "0.8" +minidump = "0.20" +memmap2 = "0.9" [target.'cfg(target_os = "macos")'.dev-dependencies] # We dump symbols for the `test` executable so that we can validate that minidumps # created by this crate can be processed by minidump-processor dump_syms = { version = "2.2", default-features = false } -minidump-processor = { version = "0.19", default-features = false } -minidump-unwind = { version = "0.19", features = ["debuginfo"] } +minidump-processor = { version = "0.20", default-features = false } +minidump-unwind = { version = "0.20", features = ["debuginfo"] } similar-asserts = "1.5" uuid = "1.4"