diff --git a/os/Cargo.lock b/os/Cargo.lock index 7e2ea60..25c764c 100644 --- a/os/Cargo.lock +++ b/os/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "ahash" @@ -353,9 +353,9 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] name = "xmas-elf" -version = "0.7.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e74de9a366f6ab8c405fa6b371d9ac24943921fa14b3d64afcb202065c405f11" +checksum = "18245fcbb8b3de8dd198ce7944fdd4096986fd6cd306b0fcfa27df817bd545d6" dependencies = [ "zero", ] diff --git a/os/Cargo.toml b/os/Cargo.toml index d3f9735..564176c 100644 --- a/os/Cargo.toml +++ b/os/Cargo.toml @@ -19,7 +19,7 @@ device_tree = { git = "https://github.com/rcore-os/device_tree-rs" } virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers" } rcore-fs = { git = "https://github.com/rcore-os/rcore-fs"} rcore-fs-sfs = { git = "https://github.com/rcore-os/rcore-fs"} -xmas-elf = "0.7.0" +xmas-elf = "0.10.0" # panic 时直接终止,因为我们没有实现堆栈展开的功能 [profile.dev]