From 2f82ca846fc886b9bbdb72399bf017a8b0bedbbe Mon Sep 17 00:00:00 2001 From: Shaowei Song Date: Fri, 27 Dec 2024 02:18:00 +0000 Subject: [PATCH] Work around the compile error caused by crate "unwinding" --- ostd/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ostd/Cargo.toml b/ostd/Cargo.toml index 286858922..6391041f0 100644 --- a/ostd/Cargo.toml +++ b/ostd/Cargo.toml @@ -38,7 +38,8 @@ ostd-pod = { git = "https://github.com/asterinas/ostd-pod", rev = "c4644be", ver spin = "0.9.4" smallvec = "1.13.2" static_assertions = "1.1.0" -unwinding = { version = "0.2.3", default-features = false, features = ["fde-gnu-eh-frame-hdr", "hide-trace", "panic", "personality", "unwinder"] } +# The version is pinned to "0.2.3" due to a compilation error with version "0.2.5". Unpin it once the issue is resolved. +unwinding = { version = "=0.2.3", default-features = false, features = ["fde-gnu-eh-frame-hdr", "hide-trace", "panic", "personality", "unwinder"] } volatile = { version = "0.4.5", features = ["unstable"] } xarray = { git = "https://github.com/asterinas/xarray", version = "0.1.0" }