Skip to content

Commit 3c98ace

Browse files
committed
Upgrade ruzstd and object to the latest version
`object` released a breaking change with adjustments to `elf::R_RISCV_GNU_*` and `pe::IMAGE_WEAK_EXTERN_*` constants, as well as a changed API for Mach-O dyld. `ruzstd` made some API changes that aren't relevant to our use. Neither of these changes have an effect on `backtrace`, so we should be able to safely upgrade both. Object changelog: https://github.com/gimli-rs/object/blob/master/CHANGELOG.md#0370 Ruzstd changelog: https://github.com/KillingSpark/zstd-rs/releases/tag/v0.8.0
1 parent 57c7529 commit 3c98ace

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ windows-targets = "0.52.6"
4343

4444
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
4545
miniz_oxide = { version = "0.8", default-features = false }
46-
ruzstd = { version = "0.7.3", default-features = false, optional = true }
46+
ruzstd = { version = "0.8.1", default-features = false, optional = true }
4747
addr2line = { version = "0.24.0", default-features = false }
4848
libc = { version = "0.2.156", default-features = false }
4949

5050
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies.object]
51-
version = "0.36.0"
51+
version = "0.37.0"
5252
default-features = false
5353
features = ['read_core', 'elf', 'macho', 'pe', 'xcoff', 'unaligned', 'archive']
5454

crates/as-if-std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ libc = { version = "0.2.156", default-features = false }
1818

1919
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
2020
miniz_oxide = { version = "0.8", optional = true, default-features = false }
21-
ruzstd = { version = "0.7.2", optional = true, default-features = false }
21+
ruzstd = { version = "0.8.1", optional = true, default-features = false }
2222
addr2line = { version = "0.24.0", optional = true, default-features = false }
2323

2424
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies.object]
25-
version = "0.36.0"
25+
version = "0.37.0"
2626
default-features = false
2727
optional = true
2828
features = ['read_core', 'elf', 'macho', 'pe', 'xcoff', 'unaligned', 'archive']

0 commit comments

Comments
 (0)