2019-06-13 11:07:32 +01:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-05-11 14:26:09 +00:00
|
|
|
version = 3
|
|
|
|
|
2019-08-07 17:53:37 +01:00
|
|
|
[[package]]
|
|
|
|
name = "acpi_tables"
|
|
|
|
version = "0.1.0"
|
2023-04-26 17:09:07 +01:00
|
|
|
source = "git+https://github.com/rust-vmm/acpi_tables?branch=main#98dcb0309d362dd83f6ffcac4f66914a2fbd5a73"
|
2019-08-07 17:53:37 +01:00
|
|
|
dependencies = [
|
2023-03-02 08:01:33 +00:00
|
|
|
"zerocopy",
|
2019-08-07 17:53:37 +01:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "addr2line"
|
|
|
|
version = "0.19.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
|
|
|
|
dependencies = [
|
|
|
|
"gimli",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "adler"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2022-11-28 13:08:13 +00:00
|
|
|
version = "0.7.20"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-28 13:08:13 +00:00
|
|
|
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"memchr",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
2019-11-18 15:30:54 +01:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2023-04-26 23:57:53 +00:00
|
|
|
version = "1.0.70"
|
2019-11-18 15:30:54 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-26 23:57:53 +00:00
|
|
|
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
|
2019-11-18 15:30:54 +01:00
|
|
|
|
2020-10-23 11:20:37 +01:00
|
|
|
[[package]]
|
|
|
|
name = "api_client"
|
|
|
|
version = "0.1.0"
|
2021-07-20 15:31:32 +02:00
|
|
|
dependencies = [
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
2020-10-23 11:20:37 +01:00
|
|
|
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
[[package]]
|
|
|
|
name = "arc-swap"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.6.0"
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
|
2019-02-28 14:16:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "arch"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-06-01 19:29:54 -07:00
|
|
|
"anyhow",
|
2019-05-02 00:59:51 +08:00
|
|
|
"byteorder",
|
2021-06-18 15:24:33 +01:00
|
|
|
"fdt",
|
2020-06-01 19:29:54 -07:00
|
|
|
"hypervisor",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"linux-loader",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-09-23 18:20:55 +02:00
|
|
|
"serde",
|
2021-02-03 10:23:35 +00:00
|
|
|
"thiserror",
|
2022-08-04 11:34:26 +08:00
|
|
|
"uuid",
|
2021-05-26 15:06:28 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2021-05-10 10:19:24 +00:00
|
|
|
"vm-fdt",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2020-09-23 18:20:55 +02:00
|
|
|
"vm-migration",
|
2021-07-14 14:44:38 -07:00
|
|
|
"vmm-sys-util",
|
2019-02-28 14:16:58 +01:00
|
|
|
]
|
|
|
|
|
2023-01-10 11:32:17 +00:00
|
|
|
[[package]]
|
|
|
|
name = "argh"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.1.10"
|
2023-01-10 11:32:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "ab257697eb9496bf75526f0217b5ed64636a9cfafa78b8365c71bd283fcef93e"
|
2023-01-10 11:32:17 +00:00
|
|
|
dependencies = [
|
|
|
|
"argh_derive",
|
|
|
|
"argh_shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "argh_derive"
|
2023-01-16 23:04:03 +00:00
|
|
|
version = "0.1.10"
|
2023-01-10 11:32:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-16 23:04:03 +00:00
|
|
|
checksum = "b382dbd3288e053331f03399e1db106c9fb0d8562ad62cb04859ae926f324fa6"
|
2023-01-10 11:32:17 +00:00
|
|
|
dependencies = [
|
|
|
|
"argh_shared",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "argh_shared"
|
2023-01-16 23:04:03 +00:00
|
|
|
version = "0.1.10"
|
2023-01-10 11:32:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-16 23:04:03 +00:00
|
|
|
checksum = "64cb94155d965e3d37ffbbe7cc5b82c3dd79dd33bd48e536f73d2cfb8d85506f"
|
2023-01-10 11:32:17 +00:00
|
|
|
|
2020-01-30 07:46:26 +00:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-02-07 23:16:06 +00:00
|
|
|
version = "1.1.0"
|
2020-01-30 07:46:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-07 23:16:06 +00:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-01-30 07:46:26 +00:00
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "backtrace"
|
|
|
|
version = "0.3.67"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
|
|
|
|
dependencies = [
|
|
|
|
"addr2line",
|
|
|
|
"cc",
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
|
|
|
"miniz_oxide",
|
|
|
|
"object",
|
|
|
|
"rustc-demangle",
|
|
|
|
]
|
|
|
|
|
2021-05-05 15:16:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bincode"
|
|
|
|
version = "1.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2019-03-07 14:56:43 +01:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2021-08-16 23:11:36 +00:00
|
|
|
version = "1.3.2"
|
2019-03-07 14:56:43 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-16 23:11:36 +00:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2019-03-07 14:56:43 +01:00
|
|
|
|
2020-07-14 10:43:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "block_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-07-27 15:58:53 +02:00
|
|
|
"io-uring",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-01-20 19:03:59 +01:00
|
|
|
"qcow",
|
2023-01-10 12:45:30 +00:00
|
|
|
"smallvec",
|
2021-01-20 10:53:27 +01:00
|
|
|
"thiserror",
|
2021-05-06 13:34:31 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2021-07-26 11:51:03 -04:00
|
|
|
"vhdx",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-21 12:41:16 +02:00
|
|
|
"virtio-queue",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2020-07-14 10:43:33 +01:00
|
|
|
"vm-virtio",
|
2020-07-27 15:58:53 +02:00
|
|
|
"vmm-sys-util",
|
2020-07-14 10:43:33 +01:00
|
|
|
]
|
|
|
|
|
2019-02-28 14:16:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
2021-03-10 12:36:39 +00:00
|
|
|
version = "1.4.3"
|
2019-02-28 14:16:58 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-03-10 12:36:39 +00:00
|
|
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
2019-02-28 14:16:58 +01:00
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2023-01-30 23:23:35 +00:00
|
|
|
version = "1.0.79"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-30 23:23:35 +00:00
|
|
|
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
2019-05-23 16:45:13 +01:00
|
|
|
|
2020-10-11 17:22:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2019-02-21 17:04:44 +01:00
|
|
|
[[package]]
|
|
|
|
name = "cloud-hypervisor"
|
2023-05-18 13:34:53 +01:00
|
|
|
version = "32.0.0"
|
2019-02-21 17:39:34 +01:00
|
|
|
dependencies = [
|
2020-10-26 16:16:56 +00:00
|
|
|
"anyhow",
|
2020-10-23 11:20:37 +01:00
|
|
|
"api_client",
|
2023-01-13 00:50:53 +00:00
|
|
|
"argh",
|
2023-01-17 12:53:55 +00:00
|
|
|
"dhat",
|
2022-03-03 15:47:14 +00:00
|
|
|
"dirs",
|
2020-10-26 16:46:04 -07:00
|
|
|
"epoll",
|
2021-02-17 11:19:39 +00:00
|
|
|
"event_monitor",
|
2020-06-07 17:50:38 -07:00
|
|
|
"hypervisor",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-05-15 10:19:51 +01:00
|
|
|
"net_util",
|
2022-06-20 14:05:17 +00:00
|
|
|
"once_cell",
|
2020-09-08 15:51:00 +01:00
|
|
|
"option_parser",
|
2021-08-16 20:40:11 -07:00
|
|
|
"seccompiler",
|
2019-05-02 00:59:51 +08:00
|
|
|
"serde_json",
|
2021-01-11 18:32:35 +00:00
|
|
|
"signal-hook",
|
2021-03-23 16:15:48 +00:00
|
|
|
"test_infra",
|
2020-10-26 16:16:56 +00:00
|
|
|
"thiserror",
|
2022-09-08 06:02:26 +00:00
|
|
|
"tpm",
|
2022-06-21 15:01:26 +01:00
|
|
|
"tracer",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm",
|
|
|
|
"vmm-sys-util",
|
2020-10-28 16:40:50 -07:00
|
|
|
"wait-timeout",
|
2019-02-22 17:05:02 +01:00
|
|
|
]
|
|
|
|
|
2021-07-26 11:51:03 -04:00
|
|
|
[[package]]
|
|
|
|
name = "crc32c"
|
2022-04-13 10:05:46 +00:00
|
|
|
version = "0.6.3"
|
2021-07-26 11:51:03 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-13 10:05:46 +00:00
|
|
|
checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e"
|
2021-07-26 11:51:03 -04:00
|
|
|
dependencies = [
|
|
|
|
"rustc_version",
|
|
|
|
]
|
|
|
|
|
2021-05-05 15:16:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crc64"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "55626594feae15d266d52440b26ff77de0e22230cf0c113abe619084c1ddc910"
|
|
|
|
|
2022-07-28 11:18:08 +00:00
|
|
|
[[package]]
|
|
|
|
name = "darling"
|
2023-03-10 23:59:11 +00:00
|
|
|
version = "0.14.4"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-10 23:59:11 +00:00
|
|
|
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"darling_core",
|
|
|
|
"darling_macro",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "darling_core"
|
2023-03-10 23:59:11 +00:00
|
|
|
version = "0.14.4"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-10 23:59:11 +00:00
|
|
|
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"fnv",
|
|
|
|
"ident_case",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"strsim",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "darling_macro"
|
2023-03-10 23:59:11 +00:00
|
|
|
version = "0.14.4"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-10 23:59:11 +00:00
|
|
|
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"darling_core",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2019-03-07 14:56:43 +01:00
|
|
|
[[package]]
|
|
|
|
name = "devices"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"acpi_tables",
|
2019-12-12 09:36:13 +08:00
|
|
|
"anyhow",
|
2021-05-21 18:26:00 +02:00
|
|
|
"arch",
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-02 00:59:51 +08:00
|
|
|
"byteorder",
|
2022-06-01 13:24:12 +08:00
|
|
|
"hypervisor",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2022-09-12 20:46:03 +00:00
|
|
|
"thiserror",
|
|
|
|
"tpm",
|
2021-05-11 14:26:09 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vm-device",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-12-12 09:36:13 +08:00
|
|
|
"vm-migration",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-03-07 14:56:43 +01:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "dhat"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4f2aaf837aaf456f6706cb46386ba8dffd4013a757e36f4ea05c20dd46b209a3"
|
|
|
|
dependencies = [
|
|
|
|
"backtrace",
|
|
|
|
"lazy_static",
|
|
|
|
"mintex",
|
|
|
|
"parking_lot 0.12.1",
|
|
|
|
"rustc-hash",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"thousands",
|
|
|
|
]
|
|
|
|
|
2021-09-15 23:09:12 +00:00
|
|
|
[[package]]
|
|
|
|
name = "dirs"
|
2023-04-12 23:57:37 +00:00
|
|
|
version = "5.0.0"
|
2021-09-15 23:09:12 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-12 23:57:37 +00:00
|
|
|
checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd"
|
2021-09-15 23:09:12 +00:00
|
|
|
dependencies = [
|
|
|
|
"dirs-sys",
|
|
|
|
]
|
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "dirs-sys"
|
2023-04-12 23:57:37 +00:00
|
|
|
version = "0.4.0"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-12 23:57:37 +00:00
|
|
|
checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b"
|
2019-05-23 16:45:13 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"redox_users",
|
2023-04-12 23:57:37 +00:00
|
|
|
"windows-sys 0.45.0",
|
2019-05-23 16:45:13 +01:00
|
|
|
]
|
|
|
|
|
2020-11-19 20:20:23 +01:00
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.10.0"
|
2020-11-19 20:20:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-07 17:39:14 +00:00
|
|
|
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
|
2020-11-19 20:20:23 +01:00
|
|
|
dependencies = [
|
|
|
|
"humantime",
|
2022-12-07 17:39:14 +00:00
|
|
|
"is-terminal",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-11-19 20:20:23 +01:00
|
|
|
"regex",
|
|
|
|
"termcolor",
|
|
|
|
]
|
|
|
|
|
2019-03-07 14:56:43 +01:00
|
|
|
[[package]]
|
|
|
|
name = "epoll"
|
2020-06-25 13:31:37 +00:00
|
|
|
version = "4.3.1"
|
2019-03-07 14:56:43 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-25 13:31:37 +00:00
|
|
|
checksum = "20df693c700404f7e19d4d6fae6b15215d2913c27955d2b9d6f2c0f537511cd0"
|
2019-03-07 14:56:43 +01:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2019-03-07 14:56:43 +01:00
|
|
|
]
|
|
|
|
|
2022-09-16 00:45:44 +00:00
|
|
|
[[package]]
|
|
|
|
name = "errno"
|
2023-04-13 23:58:30 +00:00
|
|
|
version = "0.3.1"
|
2022-09-16 00:45:44 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-13 23:58:30 +00:00
|
|
|
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
2022-09-16 00:45:44 +00:00
|
|
|
dependencies = [
|
|
|
|
"errno-dragonfly",
|
|
|
|
"libc",
|
2023-04-13 23:58:30 +00:00
|
|
|
"windows-sys 0.48.0",
|
2022-09-16 00:45:44 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "errno-dragonfly"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2021-02-17 11:16:00 +00:00
|
|
|
[[package]]
|
|
|
|
name = "event_monitor"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
]
|
|
|
|
|
2021-06-18 15:24:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "fdt"
|
2023-02-15 23:58:36 +00:00
|
|
|
version = "0.1.5"
|
2021-06-18 15:24:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-15 23:58:36 +00:00
|
|
|
checksum = "784a4df722dc6267a04af36895398f59d21d07dce47232adf31ec0ff2fa45e67"
|
2021-06-18 15:24:33 +01:00
|
|
|
|
2022-07-28 11:18:08 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
|
|
|
version = "1.0.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
|
2022-02-20 12:17:50 +09:00
|
|
|
[[package]]
|
|
|
|
name = "gdbstub"
|
2023-03-02 00:00:57 +00:00
|
|
|
version = "0.6.4"
|
2022-02-20 12:17:50 +09:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-02 00:00:57 +00:00
|
|
|
checksum = "ba4fddc6f9d12cbef29e395d9a6b48c128f513c8a2ded7048c97ed5c484e53e7"
|
2022-02-20 12:17:50 +09:00
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"cfg-if",
|
|
|
|
"log",
|
|
|
|
"managed",
|
|
|
|
"num-traits",
|
|
|
|
"paste",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gdbstub_arch"
|
2022-08-19 01:37:42 +00:00
|
|
|
version = "0.2.4"
|
2022-02-20 12:17:50 +09:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-19 01:37:42 +00:00
|
|
|
checksum = "eecb536c55c43593a00dde9074dbbdb0e81ce5f20dbca921400f8779c21dea9c"
|
2022-02-20 12:17:50 +09:00
|
|
|
dependencies = [
|
|
|
|
"gdbstub",
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2019-07-22 11:50:56 -07:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2022-11-17 23:04:10 +00:00
|
|
|
version = "0.2.8"
|
2019-07-22 11:50:56 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-17 23:04:10 +00:00
|
|
|
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
2019-07-22 11:50:56 -07:00
|
|
|
dependencies = [
|
2021-10-12 05:09:59 +00:00
|
|
|
"cfg-if",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"wasi",
|
2019-07-22 11:50:56 -07:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "gimli"
|
2023-01-23 23:05:42 +00:00
|
|
|
version = "0.27.1"
|
2023-01-17 12:53:55 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-23 23:05:42 +00:00
|
|
|
checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec"
|
2023-01-17 12:53:55 +00:00
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.3.1"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
2019-07-16 10:54:33 +01:00
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2023-02-14 23:58:31 +00:00
|
|
|
version = "0.3.1"
|
2020-01-05 22:32:54 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-14 23:58:31 +00:00
|
|
|
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
2020-01-05 22:32:54 +00:00
|
|
|
|
2020-11-19 20:20:23 +01:00
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
2021-01-13 20:44:38 +00:00
|
|
|
version = "2.1.0"
|
2020-11-19 20:20:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-01-13 20:44:38 +00:00
|
|
|
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
2020-11-19 20:20:23 +01:00
|
|
|
|
2020-06-07 17:50:38 -07:00
|
|
|
[[package]]
|
|
|
|
name = "hypervisor"
|
|
|
|
version = "0.1.0"
|
2020-06-03 12:23:56 -07:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
2022-07-18 15:47:51 +00:00
|
|
|
"byteorder",
|
2020-11-19 20:20:23 +01:00
|
|
|
"env_logger",
|
2020-11-13 12:30:25 +01:00
|
|
|
"iced-x86",
|
2020-06-03 12:23:56 -07:00
|
|
|
"kvm-bindings",
|
|
|
|
"kvm-ioctls",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-12-03 14:43:48 -08:00
|
|
|
"mshv-bindings",
|
|
|
|
"mshv-ioctls",
|
2020-06-03 12:23:56 -07:00
|
|
|
"serde",
|
2022-07-28 11:18:08 +00:00
|
|
|
"serde_with",
|
2020-06-03 12:23:56 -07:00
|
|
|
"thiserror",
|
2022-07-21 13:15:15 +00:00
|
|
|
"vfio-ioctls",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2020-06-03 12:23:56 -07:00
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
2020-06-07 17:50:38 -07:00
|
|
|
|
2020-11-13 12:30:25 +01:00
|
|
|
[[package]]
|
|
|
|
name = "iced-x86"
|
2023-01-03 23:03:13 +00:00
|
|
|
version = "1.18.0"
|
2020-11-13 12:30:25 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-03 23:03:13 +00:00
|
|
|
checksum = "1dd04b950d75b3498320253b17fb92745b2cc79ead8814aede2f7c1bab858bec"
|
2020-11-13 12:30:25 +01:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
]
|
|
|
|
|
2022-07-28 11:18:08 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ident_case"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
|
|
2021-10-12 05:09:59 +00:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
2021-10-18 23:11:32 +00:00
|
|
|
version = "0.1.12"
|
2021-10-12 05:09:59 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-18 23:11:32 +00:00
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
2021-10-12 05:09:59 +00:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "io-lifetimes"
|
2023-04-14 23:57:20 +00:00
|
|
|
version = "1.0.10"
|
2022-11-28 13:08:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-14 23:57:20 +00:00
|
|
|
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
|
2022-11-28 13:08:13 +00:00
|
|
|
dependencies = [
|
2023-04-14 23:57:20 +00:00
|
|
|
"hermit-abi",
|
2022-11-28 13:08:13 +00:00
|
|
|
"libc",
|
2023-04-14 23:57:20 +00:00
|
|
|
"windows-sys 0.48.0",
|
2022-11-28 13:08:13 +00:00
|
|
|
]
|
2022-09-16 00:45:44 +00:00
|
|
|
|
2020-07-27 15:58:53 +02:00
|
|
|
[[package]]
|
|
|
|
name = "io-uring"
|
2023-03-03 17:27:58 +00:00
|
|
|
version = "0.5.13"
|
2020-08-10 08:51:34 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 17:27:58 +00:00
|
|
|
checksum = "dd1e1a01cfb924fd8c5c43b6827965db394f5a3a16c599ce03452266e1cf984c"
|
2020-07-27 15:58:53 +02:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2020-07-27 15:58:53 +02:00
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2022-05-24 16:00:10 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ipnetwork"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.20.0"
|
2022-05-24 16:00:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e"
|
2022-05-24 16:00:10 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "is-terminal"
|
2023-04-17 23:58:28 +00:00
|
|
|
version = "0.4.7"
|
2022-11-28 13:08:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-17 23:58:28 +00:00
|
|
|
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
|
2022-11-28 13:08:13 +00:00
|
|
|
dependencies = [
|
2022-12-07 17:39:14 +00:00
|
|
|
"hermit-abi",
|
2022-11-30 23:25:54 +00:00
|
|
|
"io-lifetimes",
|
|
|
|
"rustix",
|
2023-04-17 23:58:28 +00:00
|
|
|
"windows-sys 0.48.0",
|
2022-11-28 13:08:13 +00:00
|
|
|
]
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2023-03-08 23:58:14 +00:00
|
|
|
version = "1.0.6"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-08 23:58:14 +00:00
|
|
|
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
2019-07-16 10:54:33 +01:00
|
|
|
|
2019-02-22 17:05:02 +01:00
|
|
|
[[package]]
|
|
|
|
name = "kvm-bindings"
|
2022-11-28 13:08:13 +00:00
|
|
|
version = "0.6.0"
|
|
|
|
source = "git+https://github.com/cloud-hypervisor/kvm-bindings?branch=ch-v0.6.0-tdx#7d9ffb47e5b9b1989577258800a0f57c93f1445f"
|
2019-11-29 16:36:33 +01:00
|
|
|
dependencies = [
|
2020-02-16 21:42:42 +01:00
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-11-29 16:36:33 +01:00
|
|
|
]
|
2019-02-22 17:05:02 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "kvm-ioctls"
|
2023-01-31 23:02:11 +00:00
|
|
|
version = "0.13.0"
|
2023-04-10 11:11:46 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/kvm-ioctls?branch=main#23a3bb045a467e60bb00328a0b13cea13b5815d0"
|
2019-02-22 17:05:02 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"kvm-bindings",
|
|
|
|
"libc",
|
|
|
|
"vmm-sys-util",
|
2019-02-21 17:39:34 +01:00
|
|
|
]
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
2019-08-26 01:05:43 +00:00
|
|
|
version = "1.4.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-02 00:59:51 +08:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2019-07-16 10:54:33 +01:00
|
|
|
|
2019-02-21 17:39:34 +01:00
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2023-01-05 23:03:41 +00:00
|
|
|
version = "0.2.139"
|
2019-02-21 17:39:34 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-05 23:03:41 +00:00
|
|
|
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
|
2019-02-21 17:39:34 +01:00
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "libssh2-sys"
|
2023-01-25 23:04:36 +00:00
|
|
|
version = "0.3.0"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-25 23:04:36 +00:00
|
|
|
checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
|
2019-05-23 16:45:13 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"libz-sys",
|
|
|
|
"openssl-sys",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-05-23 16:45:13 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libz-sys"
|
2022-05-30 23:10:36 +00:00
|
|
|
version = "1.1.8"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 23:10:36 +00:00
|
|
|
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
|
2019-05-23 16:45:13 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-05-23 16:45:13 +01:00
|
|
|
]
|
|
|
|
|
2019-02-28 14:16:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "linux-loader"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.8.1"
|
2021-02-25 16:53:46 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-07 17:39:14 +00:00
|
|
|
checksum = "b9259ddbfbb52cc918f6bbc60390004ddd0228cf1d85f402009ff2b3d95de83f"
|
2019-06-03 16:40:09 +02:00
|
|
|
dependencies = [
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-06-03 16:40:09 +02:00
|
|
|
]
|
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
2023-04-18 23:57:35 +00:00
|
|
|
version = "0.3.2"
|
2022-11-28 13:08:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-18 23:57:35 +00:00
|
|
|
checksum = "3f508063cc7bb32987c71511216bd5a32be15bccb6a80b52df8b9d7f01fc3aa2"
|
2022-11-28 13:08:13 +00:00
|
|
|
|
2020-01-25 22:43:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
2022-09-20 23:12:59 +00:00
|
|
|
version = "0.4.9"
|
2020-01-25 22:43:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-20 23:12:59 +00:00
|
|
|
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
|
2020-01-25 22:43:45 +00:00
|
|
|
dependencies = [
|
2022-03-30 23:45:47 +00:00
|
|
|
"autocfg",
|
2019-05-02 00:59:51 +08:00
|
|
|
"scopeguard",
|
2020-01-25 22:43:45 +00:00
|
|
|
]
|
|
|
|
|
2019-04-18 12:26:09 +02:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2022-05-02 23:56:28 +00:00
|
|
|
version = "0.4.17"
|
2019-04-18 12:26:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-02 23:56:28 +00:00
|
|
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
2019-04-18 12:26:09 +02:00
|
|
|
dependencies = [
|
2021-10-12 05:09:59 +00:00
|
|
|
"cfg-if",
|
2019-04-18 12:26:09 +02:00
|
|
|
]
|
|
|
|
|
2022-02-20 12:17:50 +09:00
|
|
|
[[package]]
|
|
|
|
name = "managed"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0ca88d725a0a943b096803bd34e73a4437208b6077654cc4ecb2947a5f91618d"
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2022-05-02 14:21:31 +00:00
|
|
|
version = "2.5.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-02 14:21:31 +00:00
|
|
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
2019-07-16 10:54:33 +01:00
|
|
|
|
2019-09-18 11:14:49 +02:00
|
|
|
[[package]]
|
|
|
|
name = "micro_http"
|
|
|
|
version = "0.1.0"
|
2023-01-27 23:20:47 +00:00
|
|
|
source = "git+https://github.com/firecracker-microvm/micro-http?branch=main#b538bf89e50be83b6fa9ab1896727ff61e02fa13"
|
2019-11-08 17:49:51 +00:00
|
|
|
dependencies = [
|
2021-04-16 05:31:15 +00:00
|
|
|
"libc",
|
|
|
|
"vmm-sys-util",
|
2019-11-08 17:49:51 +00:00
|
|
|
]
|
2019-09-18 11:14:49 +02:00
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
2023-02-01 23:04:50 +00:00
|
|
|
version = "0.6.4"
|
2023-01-17 12:53:55 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-01 23:04:50 +00:00
|
|
|
checksum = "f2e212582ede878b109755efd0773a4f0f4ec851584cf0aefbeb4d9ecc114822"
|
2023-01-17 12:53:55 +00:00
|
|
|
dependencies = [
|
|
|
|
"adler",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mintex"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fd7c5ba1c3b5a23418d7bbf98c71c3d4946a0125002129231da8d6b723d559cb"
|
|
|
|
dependencies = [
|
|
|
|
"once_cell",
|
|
|
|
"sys-info",
|
|
|
|
]
|
|
|
|
|
2020-12-03 14:43:48 -08:00
|
|
|
[[package]]
|
|
|
|
name = "mshv-bindings"
|
2022-09-07 23:08:42 +00:00
|
|
|
version = "0.1.1"
|
2023-04-10 13:44:08 -07:00
|
|
|
source = "git+https://github.com/rust-vmm/mshv?branch=main#c1230f282c2836ba89ee112146bf638343424de8"
|
2020-12-03 14:43:48 -08:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"vmm-sys-util",
|
|
|
|
"zerocopy",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mshv-ioctls"
|
2022-09-07 23:08:42 +00:00
|
|
|
version = "0.1.1"
|
2023-04-10 13:44:08 -07:00
|
|
|
source = "git+https://github.com/rust-vmm/mshv?branch=main#c1230f282c2836ba89ee112146bf638343424de8"
|
2020-12-03 14:43:48 -08:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"mshv-bindings",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2019-05-07 22:28:02 -07:00
|
|
|
[[package]]
|
|
|
|
name = "net_gen"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-05-07 22:28:02 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "net_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-07-07 16:06:54 +01:00
|
|
|
"epoll",
|
2021-09-15 21:50:03 +08:00
|
|
|
"getrandom",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-02 00:59:51 +08:00
|
|
|
"net_gen",
|
2022-06-20 14:10:55 +00:00
|
|
|
"once_cell",
|
2019-05-02 00:59:51 +08:00
|
|
|
"pnet",
|
2022-06-03 01:16:58 +00:00
|
|
|
"pnet_datalink",
|
2021-03-17 15:41:52 -07:00
|
|
|
"rate_limiter",
|
2019-05-02 00:59:51 +08:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2022-08-10 14:58:36 -07:00
|
|
|
"thiserror",
|
2021-05-21 12:25:18 +02:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-21 12:41:16 +02:00
|
|
|
"virtio-queue",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2020-07-07 15:02:18 +01:00
|
|
|
"vm-virtio",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-05-07 22:28:02 -07:00
|
|
|
]
|
|
|
|
|
2022-05-24 16:00:10 +00:00
|
|
|
[[package]]
|
|
|
|
name = "no-std-net"
|
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65"
|
|
|
|
|
2022-02-20 12:17:50 +09:00
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2022-05-03 23:11:04 +00:00
|
|
|
version = "0.2.15"
|
2022-02-20 12:17:50 +09:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-03 23:11:04 +00:00
|
|
|
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
2022-02-20 12:17:50 +09:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "object"
|
2023-01-24 23:03:58 +00:00
|
|
|
version = "0.30.3"
|
2023-01-17 12:53:55 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-24 23:03:58 +00:00
|
|
|
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
|
2023-01-17 12:53:55 +00:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2022-06-14 23:15:28 +00:00
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2023-02-23 23:58:14 +00:00
|
|
|
version = "1.17.1"
|
2022-06-14 23:15:28 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-23 23:58:14 +00:00
|
|
|
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
2022-06-14 23:15:28 +00:00
|
|
|
|
2022-02-10 18:29:53 -08:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-src"
|
2023-02-08 22:30:23 +00:00
|
|
|
version = "111.25.0+1.1.1t"
|
2022-02-10 18:29:53 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-08 22:30:23 +00:00
|
|
|
checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
|
2022-02-10 18:29:53 -08:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
]
|
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2023-03-31 23:58:38 +00:00
|
|
|
version = "0.9.83"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-31 23:58:38 +00:00
|
|
|
checksum = "666416d899cf077260dac8698d60a60b435a46d57e82acb1be3d0dad87284e5b"
|
2019-05-23 16:45:13 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"autocfg",
|
|
|
|
"cc",
|
|
|
|
"libc",
|
2022-02-10 18:29:53 -08:00
|
|
|
"openssl-src",
|
2019-05-02 00:59:51 +08:00
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-05-23 16:45:13 +01:00
|
|
|
]
|
|
|
|
|
2020-07-06 16:41:45 +01:00
|
|
|
[[package]]
|
|
|
|
name = "option_parser"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
2020-01-25 22:43:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
2021-10-12 05:09:59 +00:00
|
|
|
version = "0.11.2"
|
2020-01-25 22:43:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-12 05:09:59 +00:00
|
|
|
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
2020-01-25 22:43:45 +00:00
|
|
|
dependencies = [
|
2021-10-12 05:09:59 +00:00
|
|
|
"instant",
|
2019-05-02 00:59:51 +08:00
|
|
|
"lock_api",
|
2023-01-17 12:53:55 +00:00
|
|
|
"parking_lot_core 0.8.6",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
|
|
|
version = "0.12.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
|
|
dependencies = [
|
|
|
|
"lock_api",
|
|
|
|
"parking_lot_core 0.9.6",
|
2020-01-25 22:43:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.8.6"
|
2020-01-25 22:43:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
2020-01-25 22:43:45 +00:00
|
|
|
dependencies = [
|
2021-10-12 05:09:59 +00:00
|
|
|
"cfg-if",
|
|
|
|
"instant",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-10-12 05:09:59 +00:00
|
|
|
"redox_syscall",
|
2019-05-02 00:59:51 +08:00
|
|
|
"smallvec",
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2020-01-25 22:43:45 +00:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
|
|
|
version = "0.9.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"smallvec",
|
2023-02-06 23:03:49 +00:00
|
|
|
"windows-sys 0.42.0",
|
2023-01-17 12:53:55 +00:00
|
|
|
]
|
|
|
|
|
2022-02-20 12:17:50 +09:00
|
|
|
[[package]]
|
|
|
|
name = "paste"
|
2023-03-16 23:58:04 +00:00
|
|
|
version = "1.0.12"
|
2022-02-20 12:17:50 +09:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-16 23:58:04 +00:00
|
|
|
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
|
2022-02-20 12:17:50 +09:00
|
|
|
|
2019-04-18 12:26:09 +02:00
|
|
|
[[package]]
|
|
|
|
name = "pci"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-05-06 17:50:56 +02:00
|
|
|
"anyhow",
|
2019-05-02 00:59:51 +08:00
|
|
|
"byteorder",
|
2020-06-01 19:29:54 -07:00
|
|
|
"hypervisor",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2022-02-16 09:55:26 +01:00
|
|
|
"serde",
|
2021-08-02 14:20:09 +00:00
|
|
|
"thiserror",
|
2021-05-26 15:28:15 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2020-08-05 13:53:09 +02:00
|
|
|
"vfio-bindings",
|
2019-11-08 16:27:05 +01:00
|
|
|
"vfio-ioctls",
|
2021-06-09 13:43:04 +00:00
|
|
|
"vfio_user",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vm-allocator",
|
|
|
|
"vm-device",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2020-05-06 17:50:56 +02:00
|
|
|
"vm-migration",
|
2019-11-08 15:50:39 +01:00
|
|
|
"vmm-sys-util",
|
2019-04-18 12:26:09 +02:00
|
|
|
]
|
|
|
|
|
2022-01-10 21:27:58 -08:00
|
|
|
[[package]]
|
|
|
|
name = "performance-metrics"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2023-01-10 11:32:17 +00:00
|
|
|
"argh",
|
2022-03-03 15:47:14 +00:00
|
|
|
"dirs",
|
2022-01-31 21:24:13 -08:00
|
|
|
"serde",
|
2022-01-10 21:27:58 -08:00
|
|
|
"serde_json",
|
|
|
|
"test_infra",
|
2022-02-15 08:11:58 -08:00
|
|
|
"thiserror",
|
2022-01-10 21:27:58 -08:00
|
|
|
"wait-timeout",
|
|
|
|
]
|
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2022-10-26 23:20:36 +00:00
|
|
|
version = "0.3.26"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-26 23:20:36 +00:00
|
|
|
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
2019-05-23 16:45:13 +01:00
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "pnet"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "cd959a8268165518e2bf5546ba84c7b3222744435616381df3c456fe8d983576"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2023-02-03 23:02:15 +00:00
|
|
|
"ipnetwork",
|
2019-05-02 00:59:51 +08:00
|
|
|
"pnet_base",
|
|
|
|
"pnet_datalink",
|
|
|
|
"pnet_packet",
|
2023-02-03 23:02:15 +00:00
|
|
|
"pnet_sys",
|
2019-05-02 00:59:51 +08:00
|
|
|
"pnet_transport",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_base"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "872e46346144ebf35219ccaa64b1dffacd9c6f188cd7d012bd6977a2a838f42e"
|
2022-05-24 16:00:10 +00:00
|
|
|
dependencies = [
|
|
|
|
"no-std-net",
|
|
|
|
]
|
2019-07-16 10:54:33 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_datalink"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "c302da22118d2793c312a35fb3da6846cb0fab6c3ad53fd67e37809b06cdafce"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2022-06-03 01:16:58 +00:00
|
|
|
"ipnetwork",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"pnet_base",
|
|
|
|
"pnet_sys",
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_macros"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "2a780e80005c2e463ec25a6e9f928630049a10b43945fea83207207d4a7606f4"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2019-05-02 00:59:51 +08:00
|
|
|
"regex",
|
2021-05-17 07:46:31 +00:00
|
|
|
"syn",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_macros_support"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "e6d932134f32efd7834eb8b16d42418dac87086347d1bc7d142370ef078582bc"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"pnet_base",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_packet"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "8bde678bbd85cb1c2d99dc9fc596e57f03aa725f84f3168b0eaf33eeccb41706"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"glob",
|
|
|
|
"pnet_base",
|
|
|
|
"pnet_macros",
|
|
|
|
"pnet_macros_support",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_sys"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "faf7a58b2803d818a374be9278a1fe8f88fce14b936afbe225000cfcd9c73f16"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_transport"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "813d1c0e4defbe7ee22f6fe1755f122b77bfb5abe77145b1b5baaf463cab9249"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"pnet_base",
|
|
|
|
"pnet_packet",
|
|
|
|
"pnet_sys",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
2019-08-19 09:50:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2023-03-18 00:17:15 +00:00
|
|
|
version = "1.0.52"
|
2019-08-19 09:50:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-18 00:17:15 +00:00
|
|
|
checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224"
|
2019-08-19 09:50:43 +00:00
|
|
|
dependencies = [
|
2022-05-16 23:12:33 +00:00
|
|
|
"unicode-ident",
|
2019-08-19 09:50:43 +00:00
|
|
|
]
|
|
|
|
|
2019-04-29 19:32:56 +00:00
|
|
|
[[package]]
|
|
|
|
name = "qcow"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"byteorder",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-02 00:59:51 +08:00
|
|
|
"remain",
|
|
|
|
"vmm-sys-util",
|
2019-04-29 19:32:56 +00:00
|
|
|
]
|
|
|
|
|
2019-08-19 09:50:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2022-12-29 23:02:37 +00:00
|
|
|
version = "1.0.23"
|
2019-08-19 09:50:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-29 23:02:37 +00:00
|
|
|
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
|
2019-08-19 09:50:43 +00:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"proc-macro2",
|
2019-08-19 09:50:43 +00:00
|
|
|
]
|
|
|
|
|
2021-03-22 11:23:51 -07:00
|
|
|
[[package]]
|
|
|
|
name = "rate_limiter"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-03-22 11:23:51 -07:00
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2021-04-23 22:44:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2022-07-27 23:54:15 +00:00
|
|
|
version = "0.2.16"
|
2021-04-23 22:44:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-07-27 23:54:15 +00:00
|
|
|
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
2021-04-23 22:44:20 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2021-04-23 22:44:20 +00:00
|
|
|
]
|
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "redox_users"
|
2022-03-30 23:16:44 +00:00
|
|
|
version = "0.4.3"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-30 23:16:44 +00:00
|
|
|
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
2019-05-23 16:45:13 +01:00
|
|
|
dependencies = [
|
2021-02-22 15:43:48 +00:00
|
|
|
"getrandom",
|
2021-10-12 05:09:59 +00:00
|
|
|
"redox_syscall",
|
2022-03-17 23:11:31 +00:00
|
|
|
"thiserror",
|
2019-05-23 16:45:13 +01:00
|
|
|
]
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.7.1"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2023-03-30 23:58:56 +00:00
|
|
|
version = "0.6.29"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-30 23:58:56 +00:00
|
|
|
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
2019-07-16 10:54:33 +01:00
|
|
|
|
2019-04-29 19:32:56 +00:00
|
|
|
[[package]]
|
|
|
|
name = "remain"
|
2023-01-04 23:03:04 +00:00
|
|
|
version = "0.2.6"
|
2019-04-29 19:32:56 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-04 23:03:04 +00:00
|
|
|
checksum = "5704e2cda92fd54202f05430725317ba0ea7d0c96b246ca0a92e45177127ba3b"
|
2019-04-29 19:32:56 +00:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-04-29 19:32:56 +00:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustc-demangle"
|
2023-04-25 23:57:47 +00:00
|
|
|
version = "0.1.23"
|
2023-01-17 12:53:55 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-25 23:57:47 +00:00
|
|
|
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
2023-01-17 12:53:55 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustc-hash"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
|
|
2021-07-26 11:51:03 -04:00
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
2022-01-05 23:46:55 +00:00
|
|
|
version = "0.4.0"
|
2021-07-26 11:51:03 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-05 23:46:55 +00:00
|
|
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
2021-07-26 11:51:03 -04:00
|
|
|
dependencies = [
|
|
|
|
"semver",
|
|
|
|
]
|
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
2023-04-17 23:58:28 +00:00
|
|
|
version = "0.37.3"
|
2022-09-16 00:45:44 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-17 23:58:28 +00:00
|
|
|
checksum = "62b24138615de35e32031d041a09032ef3487a616d901ca4db224e7d557efae2"
|
2022-09-16 00:45:44 +00:00
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"errno",
|
2022-11-30 23:25:54 +00:00
|
|
|
"io-lifetimes",
|
2022-09-16 00:45:44 +00:00
|
|
|
"libc",
|
2022-11-30 23:25:54 +00:00
|
|
|
"linux-raw-sys",
|
2023-02-06 23:03:49 +00:00
|
|
|
"windows-sys 0.45.0",
|
2022-09-16 00:45:44 +00:00
|
|
|
]
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2023-03-03 23:59:17 +00:00
|
|
|
version = "1.0.13"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 23:59:17 +00:00
|
|
|
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
2019-07-16 10:54:33 +01:00
|
|
|
|
2020-01-25 22:43:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
2020-02-16 23:05:44 +00:00
|
|
|
version = "1.1.0"
|
2020-01-25 22:43:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-02 00:59:51 +08:00
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
2020-01-25 22:43:45 +00:00
|
|
|
|
2020-03-19 11:49:13 +01:00
|
|
|
[[package]]
|
2021-08-16 20:40:11 -07:00
|
|
|
name = "seccompiler"
|
2022-09-14 23:14:12 +00:00
|
|
|
version = "0.3.0"
|
2021-10-01 10:29:21 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-14 23:14:12 +00:00
|
|
|
checksum = "6f6575e3c2b3a0fe2ef3e53855b6a8dead7c29f783da5e123d378c8c6a89017e"
|
2020-03-19 11:49:13 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2020-03-19 11:49:13 +01:00
|
|
|
]
|
|
|
|
|
2021-07-26 11:51:03 -04:00
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
2023-03-27 23:59:12 +00:00
|
|
|
version = "1.0.17"
|
2021-07-26 11:51:03 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 23:59:12 +00:00
|
|
|
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
2021-07-26 11:51:03 -04:00
|
|
|
|
2019-05-07 22:28:02 -07:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2023-05-17 23:58:02 +00:00
|
|
|
version = "1.0.156"
|
2019-05-07 22:28:02 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-17 23:58:02 +00:00
|
|
|
checksum = "314b5b092c0ade17c00142951e50ced110ec27cea304b1037c6969246c2469a4"
|
2022-05-17 14:04:38 -07:00
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
2019-05-07 22:28:02 -07:00
|
|
|
|
2019-09-27 11:40:50 +02:00
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2023-05-17 23:58:02 +00:00
|
|
|
version = "1.0.156"
|
2019-09-27 11:40:50 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-17 23:58:02 +00:00
|
|
|
checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d"
|
2019-09-27 11:40:50 +02:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-09-27 11:40:50 +02:00
|
|
|
]
|
|
|
|
|
2019-07-16 10:54:33 +01:00
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2023-04-24 23:57:49 +00:00
|
|
|
version = "1.0.96"
|
2019-07-16 10:54:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-24 23:57:49 +00:00
|
|
|
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
|
2019-07-16 10:54:33 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
2019-07-16 10:54:33 +01:00
|
|
|
]
|
|
|
|
|
2022-07-28 11:18:08 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_with"
|
2023-04-19 23:57:52 +00:00
|
|
|
version = "2.3.2"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-19 23:57:52 +00:00
|
|
|
checksum = "331bb8c3bf9b92457ab7abecf07078c13f7d270ba490103e84e8b014490cd0b0"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
"serde_with_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_with_macros"
|
2023-04-19 23:57:52 +00:00
|
|
|
version = "2.3.2"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-19 23:57:52 +00:00
|
|
|
checksum = "859011bddcc11f289f07f467cc1fe01c7a941daa4d8f6c40d4d1c92eb6d9319c"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"darling",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2022-08-25 10:26:59 +02:00
|
|
|
[[package]]
|
|
|
|
name = "serial_buffer"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook"
|
2023-03-13 23:59:02 +00:00
|
|
|
version = "0.3.15"
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 23:59:02 +00:00
|
|
|
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"signal-hook-registry",
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
2023-02-20 23:59:27 +00:00
|
|
|
version = "1.4.1"
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-20 23:59:27 +00:00
|
|
|
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
vm-virtio: Implement console size config feature
One of the features of the virtio console device is its size can be
configured and updated. Our first iteration of the console device
implementation is lack of this feature. As a result, it had a
default fixed size which could not be changed. This commit implements
the console config feature and lets us change the console size from
the vmm side.
During the activation of the device, vmm reads the current terminal
size, sets the console configuration accordinly, and lets the driver
know about this configuration by sending an interrupt. Later, if
someone changes the terminal size, the vmm detects the corresponding
event, updates the configuration, and sends interrupt as before. As a
result, the console device driver, in the guest, updates the console
size.
Signed-off-by: A K M Fazla Mehrab <fazla.mehrab.akm@intel.com>
2019-07-23 12:18:20 -07:00
|
|
|
]
|
|
|
|
|
2020-01-25 22:43:45 +00:00
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2022-10-05 00:29:18 +00:00
|
|
|
version = "1.10.0"
|
2020-01-25 22:43:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-05 00:29:18 +00:00
|
|
|
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
2020-01-25 22:43:45 +00:00
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "ssh2"
|
2023-01-25 23:04:36 +00:00
|
|
|
version = "0.9.4"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-25 23:04:36 +00:00
|
|
|
checksum = "e7fe461910559f6d5604c3731d00d2aafc4a83d1665922e280f42f9a168d5455"
|
2019-05-23 16:45:13 +01:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"libssh2-sys",
|
2023-01-17 12:53:55 +00:00
|
|
|
"parking_lot 0.11.2",
|
2019-05-23 16:45:13 +01:00
|
|
|
]
|
|
|
|
|
2019-02-21 17:39:34 +01:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2021-12-31 23:09:17 +00:00
|
|
|
version = "0.10.0"
|
2019-02-21 17:39:34 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-31 23:09:17 +00:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2019-02-21 17:39:34 +01:00
|
|
|
|
2019-08-19 09:50:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.0.107"
|
2019-08-19 09:50:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
|
2019-08-19 09:50:43 +00:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2022-05-16 23:12:33 +00:00
|
|
|
"unicode-ident",
|
2019-08-19 09:50:43 +00:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sys-info"
|
|
|
|
version = "0.9.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-03-12 16:00:40 +00:00
|
|
|
[[package]]
|
2021-12-31 23:09:17 +00:00
|
|
|
name = "termcolor"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.2.0"
|
2020-03-12 16:00:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
|
2020-03-12 16:00:40 +00:00
|
|
|
dependencies = [
|
2021-12-31 23:09:17 +00:00
|
|
|
"winapi-util",
|
2020-03-12 16:00:40 +00:00
|
|
|
]
|
|
|
|
|
2021-03-23 16:15:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "test_infra"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2022-03-03 15:47:14 +00:00
|
|
|
"dirs",
|
2021-03-23 16:15:48 +00:00
|
|
|
"epoll",
|
|
|
|
"libc",
|
2022-06-20 14:05:17 +00:00
|
|
|
"once_cell",
|
2022-08-24 11:44:30 -07:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2021-03-23 16:15:48 +00:00
|
|
|
"ssh2",
|
|
|
|
"vmm-sys-util",
|
|
|
|
"wait-timeout",
|
|
|
|
]
|
|
|
|
|
2019-11-18 15:30:54 +01:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2023-03-09 23:59:23 +00:00
|
|
|
version = "1.0.39"
|
2019-11-18 15:30:54 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-09 23:59:23 +00:00
|
|
|
checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
|
2019-11-18 15:30:54 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"thiserror-impl",
|
2019-11-18 15:30:54 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2023-03-09 23:59:23 +00:00
|
|
|
version = "1.0.39"
|
2019-11-18 15:30:54 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-09 23:59:23 +00:00
|
|
|
checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
|
2019-11-18 15:30:54 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-11-18 15:30:54 +01:00
|
|
|
]
|
|
|
|
|
2023-01-17 12:53:55 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thousands"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
|
|
|
|
|
2022-09-08 06:02:26 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tpm"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"byteorder",
|
2022-09-09 03:31:56 +00:00
|
|
|
"libc",
|
2022-09-08 06:02:26 +00:00
|
|
|
"log",
|
2023-01-31 17:45:02 +00:00
|
|
|
"net_gen",
|
2022-09-08 06:02:26 +00:00
|
|
|
"thiserror",
|
2022-09-09 03:31:56 +00:00
|
|
|
"vmm-sys-util",
|
2022-09-08 06:02:26 +00:00
|
|
|
]
|
|
|
|
|
2022-06-21 15:01:26 +01:00
|
|
|
[[package]]
|
|
|
|
name = "tracer"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"once_cell",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
]
|
|
|
|
|
2022-05-16 23:12:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-ident"
|
2022-12-21 23:04:53 +00:00
|
|
|
version = "1.0.6"
|
2022-05-16 23:12:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-21 23:04:53 +00:00
|
|
|
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
|
2022-05-16 23:12:33 +00:00
|
|
|
|
2021-06-09 15:00:07 +02:00
|
|
|
[[package]]
|
|
|
|
name = "uuid"
|
2023-02-13 23:59:49 +00:00
|
|
|
version = "1.3.0"
|
2021-06-09 15:00:07 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-13 23:59:49 +00:00
|
|
|
checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
|
2021-07-26 11:51:03 -04:00
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
]
|
2021-06-09 15:00:07 +02:00
|
|
|
|
2019-05-23 16:45:13 +01:00
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
2021-06-21 23:10:33 +00:00
|
|
|
version = "0.2.15"
|
2019-05-23 16:45:13 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-06-21 23:10:33 +00:00
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2019-05-23 16:45:13 +01:00
|
|
|
|
2021-05-05 15:16:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "versionize"
|
2023-03-24 23:04:12 +00:00
|
|
|
version = "0.1.10"
|
2021-05-05 15:16:19 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-24 23:04:12 +00:00
|
|
|
checksum = "dca4b7062e7e6d685901e815c35f9671e059de97c1c0905eeff8592f3fff442f"
|
2021-05-05 15:16:19 +00:00
|
|
|
dependencies = [
|
|
|
|
"bincode",
|
|
|
|
"crc64",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"syn",
|
|
|
|
"versionize_derive",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "versionize_derive"
|
|
|
|
version = "0.1.4"
|
2021-05-06 13:31:41 +00:00
|
|
|
source = "git+https://github.com/cloud-hypervisor/versionize_derive?branch=ch#ae35ef7a3ddabd3371ab8ac0193a383aff6e4b1b"
|
2021-05-05 15:16:19 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2019-07-15 11:42:40 +02:00
|
|
|
[[package]]
|
2019-11-08 16:27:05 +01:00
|
|
|
name = "vfio-bindings"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.4.0"
|
2023-03-08 01:04:41 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vfio?branch=main#ea8f710464a24690ce109e6b7dfaa623dc518304"
|
2019-11-08 16:27:05 +01:00
|
|
|
dependencies = [
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "vfio-ioctls"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.2.0"
|
2023-03-08 01:04:41 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vfio?branch=main#ea8f710464a24690ce109e6b7dfaa623dc518304"
|
2019-07-15 11:42:40 +02:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"byteorder",
|
|
|
|
"kvm-bindings",
|
|
|
|
"kvm-ioctls",
|
2021-12-01 01:51:39 +00:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-09-02 09:44:08 +00:00
|
|
|
"mshv-bindings",
|
|
|
|
"mshv-ioctls",
|
2021-12-01 01:51:39 +00:00
|
|
|
"thiserror",
|
2020-08-05 13:53:09 +02:00
|
|
|
"vfio-bindings",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2021-06-04 11:42:36 +00:00
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "vfio_user"
|
|
|
|
version = "0.1.0"
|
2023-04-22 09:34:44 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vfio-user?branch=main#e75c9415d973769c5fd1d07716eb92d6e5be7c48"
|
2021-06-04 11:42:36 +00:00
|
|
|
dependencies = [
|
2023-02-07 17:22:58 +00:00
|
|
|
"bitflags",
|
2021-06-04 11:42:36 +00:00
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
|
|
|
"thiserror",
|
|
|
|
"vfio-bindings",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-07-15 11:42:40 +02:00
|
|
|
]
|
|
|
|
|
2021-07-26 11:51:03 -04:00
|
|
|
[[package]]
|
|
|
|
name = "vhdx"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
"crc32c",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"remain",
|
|
|
|
"thiserror",
|
|
|
|
"uuid",
|
|
|
|
]
|
|
|
|
|
2019-05-21 11:54:53 -07:00
|
|
|
[[package]]
|
2020-02-25 11:26:35 +08:00
|
|
|
name = "vhost"
|
2022-11-30 10:55:11 +00:00
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c9b791c5b0717a0558888a4cf7240cea836f39a99cb342e12ce633dcaa078072"
|
2019-05-21 11:54:53 -07:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-05-21 11:54:53 -07:00
|
|
|
]
|
|
|
|
|
2022-02-02 11:36:47 +01:00
|
|
|
[[package]]
|
|
|
|
name = "vhost-user-backend"
|
2022-11-30 10:55:11 +00:00
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9f237b91db4ac339d639fb43398b52d785fa51e3c7760ac9425148863c1f4303"
|
2022-02-02 11:36:47 +01:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"vhost",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.1.0",
|
2022-02-02 11:36:47 +01:00
|
|
|
"virtio-queue",
|
|
|
|
"vm-memory",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2019-10-31 10:16:28 -07:00
|
|
|
[[package]]
|
2020-01-20 16:10:21 +00:00
|
|
|
name = "vhost_user_block"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2023-01-12 15:53:51 +00:00
|
|
|
"argh",
|
2020-07-14 10:43:33 +01:00
|
|
|
"block_util",
|
2021-08-04 19:35:56 +00:00
|
|
|
"env_logger",
|
2019-05-02 00:59:51 +08:00
|
|
|
"epoll",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-07-06 16:41:45 +01:00
|
|
|
"option_parser",
|
2019-05-02 00:59:51 +08:00
|
|
|
"qcow",
|
|
|
|
"vhost",
|
2022-03-03 15:45:05 +00:00
|
|
|
"vhost-user-backend",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2022-07-06 16:08:08 +02:00
|
|
|
"virtio-queue",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2020-01-20 16:10:21 +00:00
|
|
|
]
|
|
|
|
|
2020-01-20 16:10:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vhost_user_net"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2023-01-12 15:53:51 +00:00
|
|
|
"argh",
|
2021-08-04 19:35:56 +00:00
|
|
|
"env_logger",
|
2019-05-02 00:59:51 +08:00
|
|
|
"epoll",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-02 00:59:51 +08:00
|
|
|
"net_util",
|
2020-07-06 16:41:45 +01:00
|
|
|
"option_parser",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vhost",
|
2022-03-03 15:45:05 +00:00
|
|
|
"vhost-user-backend",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2020-01-20 16:10:21 +00:00
|
|
|
]
|
|
|
|
|
2019-10-10 09:38:42 +02:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-bindings"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-02 00:59:51 +08:00
|
|
|
checksum = "3ff512178285488516ed85f15b5d0113a7cdb89e9e8a760b269ae4f02b84bd6b"
|
2019-10-10 09:38:42 +02:00
|
|
|
|
2023-02-21 23:58:46 +00:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-bindings"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0b9084faf91b9aa9676ae2cac8f1432df2839d9566e6f19f29dbc13a8b831dff"
|
|
|
|
|
2020-07-02 13:25:19 +01:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-devices"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"arc-swap",
|
2020-07-14 10:43:33 +01:00
|
|
|
"block_util",
|
2020-07-02 13:25:19 +01:00
|
|
|
"byteorder",
|
|
|
|
"epoll",
|
2021-02-18 15:10:51 +00:00
|
|
|
"event_monitor",
|
2020-07-30 12:40:09 +02:00
|
|
|
"io-uring",
|
2020-07-02 13:25:19 +01:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-07-02 13:25:19 +01:00
|
|
|
"net_gen",
|
|
|
|
"net_util",
|
|
|
|
"pci",
|
2021-03-22 11:23:51 -07:00
|
|
|
"rate_limiter",
|
2021-08-16 20:40:11 -07:00
|
|
|
"seccompiler",
|
2020-07-02 13:25:19 +01:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2022-08-25 10:26:59 +02:00
|
|
|
"serial_buffer",
|
virtio-devices: Add Vdpa device
vDPA is a kernel framework introduced fairly recently in order to handle
devices complying with virtio specification on their datapath, while the
control path is vendor specific. For the datapath, that means the
virtqueues are handled through DMA directly between the hardware and the
guest, while the control path goes through the vDPA framework,
eventually exposed through a vhost-vdpa device.
vDPA, like VFIO, aims at achieving baremetal performance for devices
that are passed into a VM. But unlike VFIO, it provides a simpler/better
framework for achieving migration. Because the DMA accesses between the
device and the guest are going through virtio queues, migration can be
achieved way more easily, and doesn't require each device driver to
implement the migration support. In the VFIO case, each vendor is
expected to provide an implementation of the VFIO migration framework,
which makes things harder as it must be done for each and every device.
So to summarize the point is to support migration for hardware devices
through which we can achieve baremetal performances.
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
2022-03-07 15:34:44 +01:00
|
|
|
"thiserror",
|
2021-05-06 13:34:31 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2020-07-02 13:25:19 +01:00
|
|
|
"vhost",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-21 12:41:16 +02:00
|
|
|
"virtio-queue",
|
2020-07-02 13:25:19 +01:00
|
|
|
"vm-allocator",
|
|
|
|
"vm-device",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2020-07-02 13:25:19 +01:00
|
|
|
"vm-migration",
|
|
|
|
"vm-virtio",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2021-10-21 12:41:16 +02:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-queue"
|
2023-02-28 23:58:51 +00:00
|
|
|
version = "0.7.1"
|
2022-03-07 13:47:51 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-28 23:58:51 +00:00
|
|
|
checksum = "3ba81e2bcc21c0d2fc5e6683e79367e26ad219197423a498df801d79d5ba77bd"
|
2021-10-21 12:41:16 +02:00
|
|
|
dependencies = [
|
|
|
|
"log",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.1.0",
|
2021-10-21 12:41:16 +02:00
|
|
|
"vm-memory",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2019-04-18 12:26:09 +02:00
|
|
|
[[package]]
|
|
|
|
name = "vm-allocator"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-06-11 15:08:34 +01:00
|
|
|
"arch",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-04-18 12:26:09 +02:00
|
|
|
]
|
|
|
|
|
2019-10-07 09:57:19 -07:00
|
|
|
[[package]]
|
|
|
|
name = "vm-device"
|
|
|
|
version = "0.1.0"
|
2019-11-18 15:30:54 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"anyhow",
|
2022-05-10 22:23:18 +01:00
|
|
|
"hypervisor",
|
2019-05-02 00:59:51 +08:00
|
|
|
"serde",
|
|
|
|
"thiserror",
|
2021-02-23 14:47:56 +01:00
|
|
|
"vfio-ioctls",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vmm-sys-util",
|
2019-11-18 15:30:54 +01:00
|
|
|
]
|
2019-10-07 09:57:19 -07:00
|
|
|
|
2021-05-10 10:19:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vm-fdt"
|
2021-11-01 23:09:38 +00:00
|
|
|
version = "0.2.0"
|
2023-03-28 23:59:53 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vm-fdt?branch=main#ad21ede0ddb4cc97448eeb64c1dfc27803b9ec08"
|
2021-05-10 10:19:24 +00:00
|
|
|
|
2021-08-05 23:09:54 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vm-memory"
|
2022-11-28 13:08:13 +00:00
|
|
|
version = "0.10.0"
|
2021-08-05 23:09:54 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-28 13:08:13 +00:00
|
|
|
checksum = "688a70366615b45575a424d9c665561c1b5ab2224d494f706b6a6812911a827c"
|
2021-08-05 23:09:54 +00:00
|
|
|
dependencies = [
|
2021-08-06 07:46:17 +00:00
|
|
|
"arc-swap",
|
2021-08-05 23:09:54 +00:00
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2019-05-02 00:59:51 +08:00
|
|
|
[[package]]
|
|
|
|
name = "vm-migration"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"thiserror",
|
2021-05-05 15:16:19 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-02-22 17:05:02 +01:00
|
|
|
]
|
|
|
|
|
2019-05-06 10:27:40 -07:00
|
|
|
[[package]]
|
|
|
|
name = "vm-virtio"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-10-21 12:41:16 +02:00
|
|
|
"virtio-queue",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-06 10:27:40 -07:00
|
|
|
]
|
|
|
|
|
2019-02-22 17:05:02 +01:00
|
|
|
[[package]]
|
|
|
|
name = "vmm"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"acpi_tables",
|
|
|
|
"anyhow",
|
|
|
|
"arc-swap",
|
|
|
|
"arch",
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2020-07-30 12:44:05 +02:00
|
|
|
"block_util",
|
2019-05-02 00:59:51 +08:00
|
|
|
"devices",
|
|
|
|
"epoll",
|
2021-02-17 11:24:36 +00:00
|
|
|
"event_monitor",
|
2022-02-20 12:17:50 +09:00
|
|
|
"gdbstub",
|
|
|
|
"gdbstub_arch",
|
2020-06-01 19:29:54 -07:00
|
|
|
"hypervisor",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
|
|
|
"linux-loader",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-02 00:59:51 +08:00
|
|
|
"micro_http",
|
|
|
|
"net_util",
|
2022-06-20 13:53:39 +00:00
|
|
|
"once_cell",
|
2020-07-06 16:41:45 +01:00
|
|
|
"option_parser",
|
2019-05-02 00:59:51 +08:00
|
|
|
"pci",
|
|
|
|
"qcow",
|
2021-08-16 20:40:11 -07:00
|
|
|
"seccompiler",
|
2019-05-02 00:59:51 +08:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2022-08-25 10:26:59 +02:00
|
|
|
"serial_buffer",
|
2019-05-02 00:59:51 +08:00
|
|
|
"signal-hook",
|
2020-10-26 16:11:02 +00:00
|
|
|
"thiserror",
|
2022-06-21 15:01:26 +01:00
|
|
|
"tracer",
|
2021-06-09 15:00:07 +02:00
|
|
|
"uuid",
|
2021-05-21 12:50:41 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2019-11-08 16:27:05 +01:00
|
|
|
"vfio-ioctls",
|
2021-08-11 10:19:33 +00:00
|
|
|
"vfio_user",
|
2021-07-26 11:51:03 -04:00
|
|
|
"vhdx",
|
2020-07-02 13:25:19 +01:00
|
|
|
"virtio-devices",
|
2021-10-21 12:41:16 +02:00
|
|
|
"virtio-queue",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vm-allocator",
|
|
|
|
"vm-device",
|
2021-10-22 10:29:33 +02:00
|
|
|
"vm-memory",
|
2019-05-02 00:59:51 +08:00
|
|
|
"vm-migration",
|
|
|
|
"vm-virtio",
|
|
|
|
"vmm-sys-util",
|
2023-03-02 08:01:33 +00:00
|
|
|
"zerocopy",
|
2019-02-28 15:26:30 +01:00
|
|
|
]
|
|
|
|
|
2019-10-23 10:44:42 +03:00
|
|
|
[[package]]
|
|
|
|
name = "vmm-sys-util"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.11.1"
|
2019-10-23 10:44:42 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "dd64fe09d8e880e600c324e7d664760a17f56e9672b7495a86381b49e4f72f46"
|
2019-10-23 10:44:42 +03:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-02 00:59:51 +08:00
|
|
|
"libc",
|
2020-02-17 15:28:24 +01:00
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
2019-10-23 10:44:42 +03:00
|
|
|
]
|
|
|
|
|
2020-10-28 16:40:50 -07:00
|
|
|
[[package]]
|
|
|
|
name = "wait-timeout"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2019-08-14 16:19:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
2022-06-14 08:11:04 +00:00
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
2019-08-14 16:19:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-06-14 08:11:04 +00:00
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2019-08-14 16:19:06 +00:00
|
|
|
|
2019-02-21 17:39:34 +01:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-07-06 09:39:44 +01:00
|
|
|
version = "0.3.9"
|
2019-02-21 17:39:34 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-06 09:39:44 +01:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2019-02-21 17:39:34 +01:00
|
|
|
dependencies = [
|
2019-05-02 00:59:51 +08:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2019-02-21 17:39:34 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-02 00:59:51 +08:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2019-02-21 17:39:34 +01:00
|
|
|
|
2020-11-19 20:20:23 +01:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2020-11-19 20:20:23 +01:00
|
|
|
]
|
|
|
|
|
2019-02-21 17:39:34 +01:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-02 00:59:51 +08:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2020-12-03 14:43:48 -08:00
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.42.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
|
|
dependencies = [
|
2023-04-13 23:58:30 +00:00
|
|
|
"windows_aarch64_gnullvm 0.42.2",
|
|
|
|
"windows_aarch64_msvc 0.42.2",
|
|
|
|
"windows_i686_gnu 0.42.2",
|
|
|
|
"windows_i686_msvc 0.42.2",
|
|
|
|
"windows_x86_64_gnu 0.42.2",
|
|
|
|
"windows_x86_64_gnullvm 0.42.2",
|
|
|
|
"windows_x86_64_msvc 0.42.2",
|
2023-02-06 23:03:49 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.45.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
|
|
dependencies = [
|
2023-04-13 23:58:30 +00:00
|
|
|
"windows-targets 0.42.2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
|
|
dependencies = [
|
|
|
|
"windows-targets 0.48.0",
|
2023-02-06 23:03:49 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
2023-03-24 23:59:13 +00:00
|
|
|
version = "0.42.2"
|
2023-02-06 23:03:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-24 23:59:13 +00:00
|
|
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
2023-02-06 23:03:49 +00:00
|
|
|
dependencies = [
|
2023-04-13 23:58:30 +00:00
|
|
|
"windows_aarch64_gnullvm 0.42.2",
|
|
|
|
"windows_aarch64_msvc 0.42.2",
|
|
|
|
"windows_i686_gnu 0.42.2",
|
|
|
|
"windows_i686_msvc 0.42.2",
|
|
|
|
"windows_x86_64_gnu 0.42.2",
|
|
|
|
"windows_x86_64_gnullvm 0.42.2",
|
|
|
|
"windows_x86_64_msvc 0.42.2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm 0.48.0",
|
|
|
|
"windows_aarch64_msvc 0.48.0",
|
|
|
|
"windows_i686_gnu 0.48.0",
|
|
|
|
"windows_i686_msvc 0.48.0",
|
|
|
|
"windows_x86_64_gnu 0.48.0",
|
|
|
|
"windows_x86_64_gnullvm 0.48.0",
|
|
|
|
"windows_x86_64_msvc 0.48.0",
|
2022-11-09 23:02:50 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2023-03-24 23:59:13 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-24 23:59:13 +00:00
|
|
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2023-03-24 23:59:13 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-24 23:59:13 +00:00
|
|
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2023-03-22 23:58:29 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-22 23:58:29 +00:00
|
|
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2023-03-24 23:59:13 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-24 23:59:13 +00:00
|
|
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2023-03-23 23:58:27 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-23 23:58:27 +00:00
|
|
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2023-03-14 23:58:27 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-14 23:58:27 +00:00
|
|
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
|
|
|
2022-11-09 23:02:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2023-03-24 23:59:13 +00:00
|
|
|
version = "0.42.2"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-24 23:59:13 +00:00
|
|
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2023-04-13 23:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
|
|
|
2020-12-03 14:43:48 -08:00
|
|
|
[[package]]
|
|
|
|
name = "zerocopy"
|
2021-11-11 23:12:56 +00:00
|
|
|
version = "0.6.1"
|
2020-12-03 14:43:48 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-11 23:12:56 +00:00
|
|
|
checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236"
|
2020-12-03 14:43:48 -08:00
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
"zerocopy-derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zerocopy-derive"
|
2022-10-12 09:23:50 +00:00
|
|
|
version = "0.3.2"
|
2020-12-03 14:43:48 -08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-12 09:23:50 +00:00
|
|
|
checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3"
|
2020-12-03 14:43:48 -08:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2022-10-12 09:23:50 +00:00
|
|
|
"quote",
|
2020-12-03 14:43:48 -08:00
|
|
|
"syn",
|
|
|
|
]
|