Skip to content

Commit 68609e4

Browse files
committed
Upgrade the standard library unwinding version
This comes with a `gimli` upgrade, so we no longer have two different versions.
1 parent 1f6abbb commit 68609e4

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

library/Cargo.lock

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.25.0"
88
source = "registry+https://github.com/rust-lang/crates.io-index"
99
checksum = "9acbfca36652500c911ddb767ed433e3ed99b032b5d935be73c6923662db1d43"
1010
dependencies = [
11-
"gimli 0.32.0",
11+
"gimli",
1212
"rustc-std-workspace-alloc",
1313
"rustc-std-workspace-core",
1414
]
@@ -112,17 +112,6 @@ dependencies = [
112112
"unicode-width",
113113
]
114114

115-
[[package]]
116-
name = "gimli"
117-
version = "0.31.1"
118-
source = "registry+https://github.com/rust-lang/crates.io-index"
119-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
120-
dependencies = [
121-
"compiler_builtins",
122-
"rustc-std-workspace-alloc",
123-
"rustc-std-workspace-core",
124-
]
125-
126115
[[package]]
127116
name = "gimli"
128117
version = "0.32.0"
@@ -410,12 +399,12 @@ dependencies = [
410399

411400
[[package]]
412401
name = "unwinding"
413-
version = "0.2.6"
402+
version = "0.2.7"
414403
source = "registry+https://github.com/rust-lang/crates.io-index"
415-
checksum = "8393f2782b6060a807337ff353780c1ca15206f9ba2424df18cb6e733bd7b345"
404+
checksum = "7d80f6c2bfede213d9a90b4a14f3eb99b84e33c52df6c1a15de0a100f5a88751"
416405
dependencies = [
417406
"compiler_builtins",
418-
"gimli 0.31.1",
407+
"gimli",
419408
"rustc-std-workspace-core",
420409
]
421410

library/unwind/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ cfg-if = "1.0"
2222
libc = { version = "0.2.140", features = ['rustc-dep-of-std'], default-features = false }
2323

2424
[target.'cfg(target_os = "xous")'.dependencies]
25-
unwinding = { version = "0.2.6", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
25+
unwinding = { version = "0.2.7", features = ['rustc-dep-of-std', 'unwinder', 'fde-custom'], default-features = false }
2626

2727
[features]
2828

0 commit comments

Comments
 (0)