Skip to content

Commit 49c2a1d

Browse files
Update backtrace to 0.3.73
1 parent 76e7a08 commit 49c2a1d

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

Diff for: Cargo.lock

+13-4
Original file line numberDiff line numberDiff line change
@@ -2652,14 +2652,11 @@ version = "0.32.2"
26522652
source = "registry+https://github.com/rust-lang/crates.io-index"
26532653
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
26542654
dependencies = [
2655-
"compiler_builtins",
26562655
"crc32fast",
26572656
"flate2",
26582657
"hashbrown",
26592658
"indexmap",
26602659
"memchr",
2661-
"rustc-std-workspace-alloc",
2662-
"rustc-std-workspace-core",
26632660
"ruzstd 0.5.0",
26642661
"wasmparser",
26652662
]
@@ -2675,6 +2672,18 @@ dependencies = [
26752672
"ruzstd 0.6.0",
26762673
]
26772674

2675+
[[package]]
2676+
name = "object"
2677+
version = "0.36.0"
2678+
source = "registry+https://github.com/rust-lang/crates.io-index"
2679+
checksum = "576dfe1fc8f9df304abb159d767a29d0476f7750fbf8aa7ad07816004a207434"
2680+
dependencies = [
2681+
"compiler_builtins",
2682+
"memchr",
2683+
"rustc-std-workspace-alloc",
2684+
"rustc-std-workspace-core",
2685+
]
2686+
26782687
[[package]]
26792688
name = "odht"
26802689
version = "0.3.1"
@@ -5356,7 +5365,7 @@ dependencies = [
53565365
"hermit-abi",
53575366
"libc",
53585367
"miniz_oxide",
5359-
"object 0.32.2",
5368+
"object 0.36.0",
53605369
"panic_abort",
53615370
"panic_unwind",
53625371
"profiler_builtins",

Diff for: library/std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ addr2line = { version = "0.22.0", optional = true, default-features = false }
3434
libc = { version = "0.2.153", default-features = false, features = ['rustc-dep-of-std'], public = true }
3535

3636
[target.'cfg(all(not(target_os = "aix"), not(all(windows, target_env = "msvc", not(target_vendor = "uwp")))))'.dependencies]
37-
object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] }
37+
object = { version = "0.36.0", default-features = false, optional = true, features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive'] }
3838

3939
[target.'cfg(target_os = "aix")'.dependencies]
40-
object = { version = "0.32.0", default-features = false, optional = true, features = ['read_core', 'xcoff', 'unaligned', 'archive'] }
40+
object = { version = "0.36.0", default-features = false, optional = true, features = ['read_core', 'xcoff', 'unaligned', 'archive'] }
4141

4242
[dev-dependencies]
4343
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }

0 commit comments

Comments
 (0)