Skip to content

Commit f4489e0

Browse files
authored
fix(debuginfo): Update dmsort to 1.0.1 to avoid panic due to UB (#287)
dmsort 1.0 misuses `mem::uninitialized` which is now leading to a panic which causes problems for certain symbols. Refs emilk/drop-merge-sort#2
1 parent aacd57b commit f4489e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

symbolic-debuginfo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exclude = [
2323
all-features = true
2424

2525
[dependencies]
26-
dmsort = "1.0.0"
26+
dmsort = "1.0.1"
2727
fallible-iterator = "0.2.0"
2828
flate2 = { version = "1.0.13", features = ["rust_backend"], default-features = false }
2929
gimli = { version = "0.22.0", features = ["read", "std"], default-features = false }

symbolic-symcache/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exclude = [
2323
all-features = true
2424

2525
[dependencies]
26-
dmsort = "1.0.0"
26+
dmsort = "1.0.1"
2727
fnv = "1.0.6"
2828
num = "0.3.0"
2929
symbolic-common = { version = "7.5.0", path = "../symbolic-common" }

0 commit comments

Comments
 (0)