Skip to content

Commit 1f6abbb

Browse files
committed
Upgrade the standard library addr2line version
0.25.0 is a breaking change only because it upgrades the `gimli` version. It also includes a change to the `compiler-builtins` dependency that helps with [1]. Changelog: https://github.com/gimli-rs/addr2line/blob/master/CHANGELOG.md#0250-20250611 [1]: #142265
1 parent 1ec8045 commit 1f6abbb

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

library/Cargo.lock

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ version = 4
44

55
[[package]]
66
name = "addr2line"
7-
version = "0.24.2"
7+
version = "0.25.0"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
9-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
9+
checksum = "9acbfca36652500c911ddb767ed433e3ed99b032b5d935be73c6923662db1d43"
1010
dependencies = [
11-
"compiler_builtins",
12-
"gimli",
11+
"gimli 0.32.0",
1312
"rustc-std-workspace-alloc",
1413
"rustc-std-workspace-core",
1514
]
@@ -124,6 +123,16 @@ dependencies = [
124123
"rustc-std-workspace-core",
125124
]
126125

126+
[[package]]
127+
name = "gimli"
128+
version = "0.32.0"
129+
source = "registry+https://github.com/rust-lang/crates.io-index"
130+
checksum = "93563d740bc9ef04104f9ed6f86f1e3275c2cdafb95664e26584b9ca807a8ffe"
131+
dependencies = [
132+
"rustc-std-workspace-alloc",
133+
"rustc-std-workspace-core",
134+
]
135+
127136
[[package]]
128137
name = "hashbrown"
129138
version = "0.15.3"
@@ -406,7 +415,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
406415
checksum = "8393f2782b6060a807337ff353780c1ca15206f9ba2424df18cb6e733bd7b345"
407416
dependencies = [
408417
"compiler_builtins",
409-
"gimli",
418+
"gimli 0.31.1",
410419
"rustc-std-workspace-core",
411420
]
412421

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ rustc-demangle = { version = "0.1.24", features = ['rustc-dep-of-std'] }
3232

3333
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
3434
miniz_oxide = { version = "0.8.0", optional = true, default-features = false }
35-
addr2line = { version = "0.24.0", optional = true, default-features = false }
35+
addr2line = { version = "0.25.0", optional = true, default-features = false }
3636

3737
[target.'cfg(not(all(windows, target_env = "msvc")))'.dependencies]
3838
libc = { version = "0.2.172", default-features = false, features = [

0 commit comments

Comments
 (0)