diff --git a/hypervisor/Cargo.toml b/hypervisor/Cargo.toml index 53a24a37d..11cffefc3 100644 --- a/hypervisor/Cargo.toml +++ b/hypervisor/Cargo.toml @@ -14,8 +14,8 @@ tdx = [] [dependencies] anyhow = "1.0.75" byteorder = "1.4.3" -igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main" , package = "igvm_defs", optional = true } -igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main" , package = "igvm", optional = true } +igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm_defs", optional = true } +igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm", optional = true } libc = "0.2.147" log = "0.4.20" kvm-ioctls = { version = "0.13.0", optional = true } diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index e800508a4..b5c9b4c77 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -35,8 +35,8 @@ gdbstub = { version = "0.7.0", optional = true } gdbstub_arch = { version = "0.3.0", optional = true } hex = { version = "0.4.3", optional = true } hypervisor = { path = "../hypervisor" } -igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main" , package = "igvm_defs", optional = true } -igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main" , package = "igvm", optional = true } +igvm_defs = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm_defs", optional = true } +igvm_parser = { git = "https://github.com/microsoft/igvm", branch = "main", package = "igvm", optional = true } libc = "0.2.147" linux-loader = { version = "0.10.0", features = ["elf", "bzimage", "pe"] } log = "0.4.20"