Skip to content

Commit 2b9d22d

Browse files
committed
Update rustc-demangle
1 parent 37c00c4 commit 2b9d22d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3276,9 +3276,9 @@ dependencies = [
32763276

32773277
[[package]]
32783278
name = "rustc-demangle"
3279-
version = "0.1.16"
3279+
version = "0.1.17"
32803280
source = "registry+https://github.com/rust-lang/crates.io-index"
3281-
checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
3281+
checksum = "b2610b7f643d18c87dff3b489950269617e6601a51f1f05aa5daefee36f64f0b"
32823282
dependencies = [
32833283
"compiler_builtins",
32843284
"rustc-std-workspace-core",

compiler/rustc_codegen_llvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ measureme = "0.7.1"
1515
snap = "1"
1616
tracing = "0.1"
1717
rustc_middle = { path = "../rustc_middle" }
18-
rustc-demangle = "0.1"
18+
rustc-demangle = "0.1.17"
1919
rustc_attr = { path = "../rustc_attr" }
2020
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
2121
rustc_data_structures = { path = "../rustc_data_structures" }

compiler/rustc_symbol_mangling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ doctest = false
1010
[dependencies]
1111
tracing = "0.1"
1212
punycode = "0.4.0"
13-
rustc-demangle = "0.1.16"
13+
rustc-demangle = "0.1.17"
1414

1515
rustc_ast = { path = "../rustc_ast" }
1616
rustc_span = { path = "../rustc_span" }

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ hashbrown = { version = "0.9.0", default-features = false, features = ['rustc-de
2424

2525
# Dependencies of the `backtrace` crate
2626
addr2line = { version = "0.13.0", optional = true, default-features = false }
27-
rustc-demangle = { version = "0.1.4", features = ['rustc-dep-of-std'] }
27+
rustc-demangle = { version = "0.1.17", features = ['rustc-dep-of-std'] }
2828
miniz_oxide = { version = "0.4.0", optional = true, default-features = false }
2929
[dependencies.object]
3030
version = "0.20"

src/tools/rust-demangler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
regex = "1.0"
9-
rustc-demangle = "0.1"
9+
rustc-demangle = "0.1.17"
1010

1111
[[bin]]
1212
name = "rust-demangler"

0 commit comments

Comments
 (0)