build: update IGVM crates

Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
Wei Liu
2024-05-31 18:59:03 +00:00
committed by Bo Chen
parent dd820d69ba
commit 6bb3ad1b96
3 changed files with 16 additions and 10 deletions
Generated
+12 -6
View File
@@ -1018,16 +1018,16 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]] [[package]]
name = "igvm" name = "igvm"
version = "0.2.0" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac310e8c44854718e087821efe5d30ed18f3f864b3926b777ef70aadbb9834d" checksum = "2bc8970c7e36437c52af3b3ef1acaa5e334c2a95cd8ee9639d574830f48af17e"
dependencies = [ dependencies = [
"bitfield-struct", "bitfield-struct",
"crc32fast", "crc32fast",
"hex", "hex",
"igvm_defs", "igvm_defs",
"open-enum", "open-enum",
"range_map_vec", "range_map_vec 0.2.0",
"thiserror", "thiserror",
"tracing", "tracing",
"zerocopy", "zerocopy",
@@ -1035,9 +1035,9 @@ dependencies = [
[[package]] [[package]]
name = "igvm_defs" name = "igvm_defs"
version = "0.2.0" version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a57e85ae9109a6281a1fc279456f830237a94a65873a331ad858814b1a09b2b" checksum = "2c4942827cef415726296f6d62411afdb13c1b1924125f3222988f04bef33ad2"
dependencies = [ dependencies = [
"bitfield-struct", "bitfield-struct",
"open-enum", "open-enum",
@@ -1731,6 +1731,12 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8edc89eaa583cf6bc4c6ef16a219f0a60d342ca3bf0eae793560038ac8af1795" checksum = "8edc89eaa583cf6bc4c6ef16a219f0a60d342ca3bf0eae793560038ac8af1795"
[[package]]
name = "range_map_vec"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cc2191ec1fd850e3ede4cf09ccfd40a33df561111f73e96e1b7c3f9eee31328"
[[package]] [[package]]
name = "rate_limiter" name = "rate_limiter"
version = "0.1.0" version = "0.1.0"
@@ -2468,7 +2474,7 @@ dependencies = [
"once_cell", "once_cell",
"option_parser", "option_parser",
"pci", "pci",
"range_map_vec", "range_map_vec 0.1.0",
"rate_limiter", "rate_limiter",
"seccompiler", "seccompiler",
"serde", "serde",
+2 -2
View File
@@ -14,8 +14,8 @@ tdx = []
[dependencies] [dependencies]
anyhow = "1.0.81" anyhow = "1.0.81"
byteorder = "1.5.0" byteorder = "1.5.0"
igvm = { version = "0.2.0", optional = true } igvm = { version = "0.3.1", optional = true }
igvm_defs = { version = "0.2.0", optional = true } igvm_defs = { version = "0.3.1", optional = true }
kvm-bindings = { version = "0.8.1", optional = true, features = ["serde"] } kvm-bindings = { version = "0.8.1", optional = true, features = ["serde"] }
kvm-ioctls = { version = "0.17.0", optional = true } kvm-ioctls = { version = "0.17.0", optional = true }
libc = "0.2.153" libc = "0.2.153"
+2 -2
View File
@@ -37,8 +37,8 @@ gdbstub = { version = "0.7.1", optional = true }
gdbstub_arch = { version = "0.3.0", optional = true } gdbstub_arch = { version = "0.3.0", optional = true }
hex = { version = "0.4.3", optional = true } hex = { version = "0.4.3", optional = true }
hypervisor = { path = "../hypervisor" } hypervisor = { path = "../hypervisor" }
igvm = { version = "0.2.0", optional = true } igvm = { version = "0.3.1", optional = true }
igvm_defs = { version = "0.2.0", optional = true } igvm_defs = { version = "0.3.1", optional = true }
libc = "0.2.153" libc = "0.2.153"
linux-loader = { version = "0.11.0", features = ["elf", "bzimage", "pe"] } linux-loader = { version = "0.11.0", features = ["elf", "bzimage", "pe"] }
log = "0.4.21" log = "0.4.21"