mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-09 05:16:47 +00:00
Use the latest tdx-guest crate version to fix the MMIO emulation issue
This commit is contained in:
parent
388eec449a
commit
9edee83ef1
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -1675,9 +1675,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tdx-guest"
|
name = "tdx-guest"
|
||||||
version = "0.1.8"
|
version = "0.2.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "944d4a19d6093a6f5f7bbd38ab73cc3dc11b0d17387345fc952224878caa7e7f"
|
checksum = "e7d2470765b1b82fca86257ba5a24e6f56fc642418d2ab0ace10b5e2c11e032a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 1.3.2",
|
"bitflags 1.3.2",
|
||||||
"iced-x86",
|
"iced-x86",
|
||||||
|
@ -32,7 +32,7 @@ cpio-decoder = { path = "libs/cpio-decoder" }
|
|||||||
intrusive-collections = "0.9.5"
|
intrusive-collections = "0.9.5"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
time = { version = "0.3", default-features = false, features = ["alloc"] }
|
time = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||||
tdx-guest = { version = "0.1.8", optional = true }
|
tdx-guest = { version = "0.2.0", optional = true }
|
||||||
|
|
||||||
# parse elf file
|
# parse elf file
|
||||||
xmas-elf = "0.8.0"
|
xmas-elf = "0.8.0"
|
||||||
|
@ -49,7 +49,7 @@ iced-x86 = { version = "1.21.0", default-features = false, features = [
|
|||||||
"decoder",
|
"decoder",
|
||||||
"gas",
|
"gas",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
tdx-guest = { version = "0.1.8", optional = true }
|
tdx-guest = { version = "0.2.0", optional = true }
|
||||||
|
|
||||||
[target.riscv64gc-unknown-none-elf.dependencies]
|
[target.riscv64gc-unknown-none-elf.dependencies]
|
||||||
riscv = { version = "0.11.1", features = ["s-mode"] }
|
riscv = { version = "0.11.1", features = ["s-mode"] }
|
||||||
|
@ -26,7 +26,7 @@ log = "0.4.20"
|
|||||||
uefi = { version = "0.32.0", features = ["global_allocator", "panic_handler", "logger", "qemu"]}
|
uefi = { version = "0.32.0", features = ["global_allocator", "panic_handler", "logger", "qemu"]}
|
||||||
uefi-raw = "0.8.0"
|
uefi-raw = "0.8.0"
|
||||||
x86_64 = "0.15.1"
|
x86_64 = "0.15.1"
|
||||||
tdx-guest = { version = "0.1.8", optional = true }
|
tdx-guest = { version = "0.2.0", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["cvm_guest"]
|
default = ["cvm_guest"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user