diff --git a/Cargo.lock b/Cargo.lock index cae4d0d709a..7efbacc031b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6445,8 +6445,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "unwind-sys" -version = "0.1.3" -source = "git+https://github.com/sfackler/rstack?rev=bd0f3ec#bd0f3eceb9f086a93c1e4c5fbccf1f886effe627" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a81ba64bc45243d442e9bb2a362f303df152b5078c56ce4a0dc7d813c8df91" dependencies = [ "libc", "pkg-config", diff --git a/components/background_hang_monitor/Cargo.toml b/components/background_hang_monitor/Cargo.toml index 6af6df24a88..f9ec70393e2 100644 --- a/components/background_hang_monitor/Cargo.toml +++ b/components/background_hang_monitor/Cargo.toml @@ -29,6 +29,4 @@ mach = "0.3" [target.'cfg(all(target_os = "linux", not(any(target_arch = "arm", target_arch = "aarch64"))))'.dependencies] nix = "0.25" -# There's a bug in 0.1.3 that prevent proper compilation against rc revisions -# of libunwind. Depend on the git repository version until 0.1.4 is released. -unwind-sys = { git = "https://github.com/sfackler/rstack", rev = "bd0f3ec" } +unwind-sys = "0.1.4"