Skip to content

Commit a046cd6

Browse files
committed
version wrangling
1 parent 50f7839 commit a046cd6

File tree

3 files changed

+7
-18
lines changed

3 files changed

+7
-18
lines changed

library/Cargo.lock

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

55
[[package]]
66
name = "addr2line"
7-
version = "0.22.0"
7+
version = "0.24.2"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
9-
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
9+
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
1010
dependencies = [
1111
"compiler_builtins",
12-
"gimli 0.29.0",
12+
"gimli",
1313
"rustc-std-workspace-alloc",
1414
"rustc-std-workspace-core",
1515
]
@@ -111,22 +111,10 @@ dependencies = [
111111
"unicode-width",
112112
]
113113

114-
[[package]]
115-
name = "gimli"
116-
version = "0.29.0"
117-
source = "registry+https://github.com/rust-lang/crates.io-index"
118-
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
119-
dependencies = [
120-
"compiler_builtins",
121-
"rustc-std-workspace-alloc",
122-
"rustc-std-workspace-core",
123-
]
124-
125114
[[package]]
126115
name = "gimli"
127116
version = "0.31.1"
128-
source = "registry+https://github.com/rust-lang/crates.io-index"
129-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
117+
source = "git+https://github.com/jyn514/gimli?branch=shared-attrs#91a5d4e468acbec55ed7d43d9c3204e946db0463"
130118
dependencies = [
131119
"compiler_builtins",
132120
"rustc-std-workspace-alloc",
@@ -408,7 +396,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
408396
checksum = "51f06a05848f650946acef3bf525fe96612226b61f74ae23ffa4e98bfbb8ab3c"
409397
dependencies = [
410398
"compiler_builtins",
411-
"gimli 0.31.1",
399+
"gimli",
412400
"rustc-std-workspace-core",
413401
]
414402

library/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@ rustc-demangle.debug = 0
4545
rustc-std-workspace-core = { path = 'rustc-std-workspace-core' }
4646
rustc-std-workspace-alloc = { path = 'rustc-std-workspace-alloc' }
4747
rustc-std-workspace-std = { path = 'rustc-std-workspace-std' }
48+
gimli = { git = "https://github.com/jyn514/gimli", branch = "shared-attrs", version = "0.31.1" }

library/std/Cargo.toml

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

3232
[target.'cfg(not(all(windows, target_env = "msvc", not(target_vendor = "uwp"))))'.dependencies]
3333
miniz_oxide = { version = "0.7.0", optional = true, default-features = false }
34-
addr2line = { version = "0.22.0", optional = true, default-features = false }
34+
addr2line = { version = "0.24.0", optional = true, default-features = false }
3535

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

0 commit comments

Comments
 (0)