2019-06-13 10:07:32 +00: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 16:53:37 +00:00
|
|
|
[[package]]
|
|
|
|
name = "acpi_tables"
|
|
|
|
version = "0.1.0"
|
2023-02-17 23:59:13 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/acpi_tables?branch=main#12bb6d7b252831527e630f8b3ef48877dbb11924"
|
2019-08-07 16:53:37 +00:00
|
|
|
dependencies = [
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-08-07 16:53:37 +00: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 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2022-11-28 13:08:13 +00:00
|
|
|
version = "0.7.20"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-28 13:08:13 +00:00
|
|
|
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"memchr",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
2019-11-18 14:30:54 +00:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2023-02-10 00:15:20 +00:00
|
|
|
version = "1.0.69"
|
2019-11-18 14:30:54 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-10 00:15:20 +00:00
|
|
|
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
|
2019-11-18 14:30:54 +00:00
|
|
|
|
2020-10-23 10:20:37 +00:00
|
|
|
[[package]]
|
|
|
|
name = "api_client"
|
|
|
|
version = "0.1.0"
|
2021-07-20 13:31:32 +00:00
|
|
|
dependencies = [
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
2020-10-23 10:20:37 +00: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 19:18:20 +00: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 19:18:20 +00: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 19:18:20 +00:00
|
|
|
|
2019-02-28 13:16:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "arch"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-06-02 02:29:54 +00:00
|
|
|
"anyhow",
|
2019-05-01 16:59:51 +00:00
|
|
|
"byteorder",
|
2021-06-18 14:24:33 +00:00
|
|
|
"fdt",
|
2020-06-02 02:29:54 +00:00
|
|
|
"hypervisor",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"linux-loader",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-09-23 16:20:55 +00:00
|
|
|
"serde",
|
2021-02-03 10:23:35 +00:00
|
|
|
"thiserror",
|
2022-08-04 03:34:26 +00: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 08:29:33 +00:00
|
|
|
"vm-memory",
|
2020-09-23 16:20:55 +00:00
|
|
|
"vm-migration",
|
2021-07-14 21:44:38 +00:00
|
|
|
"vmm-sys-util",
|
2019-02-28 13:16:58 +00: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 13:56:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2021-08-16 23:11:36 +00:00
|
|
|
version = "1.3.2"
|
2019-03-07 13:56:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-16 23:11:36 +00:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2019-03-07 13:56:43 +00:00
|
|
|
|
2020-07-14 09:43:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "block_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-07-27 13:58:53 +00:00
|
|
|
"io-uring",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-01-20 18:03:59 +00:00
|
|
|
"qcow",
|
2023-01-10 12:45:30 +00:00
|
|
|
"smallvec",
|
2021-01-20 09:53:27 +00:00
|
|
|
"thiserror",
|
2021-05-06 13:34:31 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2021-07-26 15:51:03 +00:00
|
|
|
"vhdx",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-21 10:41:16 +00:00
|
|
|
"virtio-queue",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2020-07-14 09:43:33 +00:00
|
|
|
"vm-virtio",
|
2020-07-27 13:58:53 +00:00
|
|
|
"vmm-sys-util",
|
2020-07-14 09:43:33 +00:00
|
|
|
]
|
|
|
|
|
2019-02-28 13:16:58 +00:00
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
2021-03-10 12:36:39 +00:00
|
|
|
version = "1.4.3"
|
2019-02-28 13:16:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-03-10 12:36:39 +00:00
|
|
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
2019-02-28 13:16:58 +00:00
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2023-01-30 23:23:35 +00:00
|
|
|
version = "1.0.79"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-30 23:23:35 +00:00
|
|
|
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
2019-05-23 15:45:13 +00: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 16:04:44 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cloud-hypervisor"
|
2023-02-23 20:35:20 +00:00
|
|
|
version = "30.0.0"
|
2019-02-21 16:39:34 +00:00
|
|
|
dependencies = [
|
2020-10-26 16:16:56 +00:00
|
|
|
"anyhow",
|
2020-10-23 10:20:37 +00: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 23:46:04 +00:00
|
|
|
"epoll",
|
2021-02-17 11:19:39 +00:00
|
|
|
"event_monitor",
|
2020-06-08 00:50:38 +00:00
|
|
|
"hypervisor",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-05-15 09:19:51 +00:00
|
|
|
"net_util",
|
2022-06-20 14:05:17 +00:00
|
|
|
"once_cell",
|
2020-09-08 14:51:00 +00:00
|
|
|
"option_parser",
|
2021-08-17 03:40:11 +00:00
|
|
|
"seccompiler",
|
2019-05-01 16:59:51 +00: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 14:01:26 +00:00
|
|
|
"tracer",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm",
|
|
|
|
"vmm-sys-util",
|
2020-10-28 23:40:50 +00:00
|
|
|
"wait-timeout",
|
2019-02-22 16:05:02 +00:00
|
|
|
]
|
|
|
|
|
2021-07-26 15:51:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crc32c"
|
2022-04-13 10:05:46 +00:00
|
|
|
version = "0.6.3"
|
2021-07-26 15:51:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-13 10:05:46 +00:00
|
|
|
checksum = "3dfea2db42e9927a3845fb268a10a72faed6d416065f77873f05e411457c363e"
|
2021-07-26 15:51:03 +00: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-02-07 23:02:30 +00:00
|
|
|
version = "0.14.3"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-07 23:02:30 +00:00
|
|
|
checksum = "c0808e1bd8671fb44a113a14e13497557533369847788fa2ae912b6ebfce9fa8"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"darling_core",
|
|
|
|
"darling_macro",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "darling_core"
|
2023-02-07 23:02:30 +00:00
|
|
|
version = "0.14.3"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-07 23:02:30 +00:00
|
|
|
checksum = "001d80444f28e193f30c2f293455da62dcf9a6b29918a4253152ae2b1de592cb"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"fnv",
|
|
|
|
"ident_case",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"strsim",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "darling_macro"
|
2023-02-07 23:02:30 +00:00
|
|
|
version = "0.14.3"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-07 23:02:30 +00:00
|
|
|
checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"darling_core",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2019-03-07 13:56:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "devices"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"acpi_tables",
|
2019-12-12 01:36:13 +00:00
|
|
|
"anyhow",
|
2021-05-21 16:26:00 +00:00
|
|
|
"arch",
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-01 16:59:51 +00:00
|
|
|
"byteorder",
|
2022-06-01 05:24:12 +00:00
|
|
|
"hypervisor",
|
2019-05-01 16:59:51 +00: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-01 16:59:51 +00:00
|
|
|
"vm-device",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-12-12 01:36:13 +00:00
|
|
|
"vm-migration",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-03-07 13:56:43 +00: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"
|
|
|
|
version = "4.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
|
|
|
dependencies = [
|
|
|
|
"dirs-sys",
|
|
|
|
]
|
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "dirs-sys"
|
2022-03-18 00:17:26 +00:00
|
|
|
version = "0.3.7"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-18 00:17:26 +00:00
|
|
|
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
2019-05-23 15:45:13 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"redox_users",
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2019-05-23 15:45:13 +00:00
|
|
|
]
|
|
|
|
|
2020-11-19 19:20:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.10.0"
|
2020-11-19 19:20:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-07 17:39:14 +00:00
|
|
|
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
|
2020-11-19 19:20:23 +00: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 19:20:23 +00:00
|
|
|
"regex",
|
|
|
|
"termcolor",
|
|
|
|
]
|
|
|
|
|
2019-03-07 13:56:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "epoll"
|
2020-06-25 13:31:37 +00:00
|
|
|
version = "4.3.1"
|
2019-03-07 13:56:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-25 13:31:37 +00:00
|
|
|
checksum = "20df693c700404f7e19d4d6fae6b15215d2913c27955d2b9d6f2c0f537511cd0"
|
2019-03-07 13:56:43 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2019-03-07 13:56:43 +00:00
|
|
|
]
|
|
|
|
|
2022-09-16 00:45:44 +00:00
|
|
|
[[package]]
|
|
|
|
name = "errno"
|
|
|
|
version = "0.2.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
|
|
|
|
dependencies = [
|
|
|
|
"errno-dragonfly",
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[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 14:24:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fdt"
|
2023-02-15 23:58:36 +00:00
|
|
|
version = "0.1.5"
|
2021-06-18 14:24:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-15 23:58:36 +00:00
|
|
|
checksum = "784a4df722dc6267a04af36895398f59d21d07dce47232adf31ec0ff2fa45e67"
|
2021-06-18 14:24:33 +00: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 03:17:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "gdbstub"
|
2022-08-18 23:50:57 +00:00
|
|
|
version = "0.6.3"
|
2022-02-20 03:17:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-18 23:50:57 +00:00
|
|
|
checksum = "32c95766e0414f8bfc1d07055574c621b67739466d6ba516c4fef8e99d30d2e6"
|
2022-02-20 03:17:50 +00: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 03:17:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-19 01:37:42 +00:00
|
|
|
checksum = "eecb536c55c43593a00dde9074dbbdb0e81ce5f20dbca921400f8779c21dea9c"
|
2022-02-20 03:17:50 +00:00
|
|
|
dependencies = [
|
|
|
|
"gdbstub",
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2019-07-22 18:50:56 +00:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2022-11-17 23:04:10 +00:00
|
|
|
version = "0.2.8"
|
2019-07-22 18:50:56 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-17 23:04:10 +00:00
|
|
|
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
2019-07-22 18:50:56 +00:00
|
|
|
dependencies = [
|
2021-10-12 05:09:59 +00:00
|
|
|
"cfg-if",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"wasi",
|
2019-07-22 18:50:56 +00: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 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.3.1"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
2019-07-16 09:54:33 +00: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 19:20:23 +00:00
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
2021-01-13 20:44:38 +00:00
|
|
|
version = "2.1.0"
|
2020-11-19 19:20:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-01-13 20:44:38 +00:00
|
|
|
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
2020-11-19 19:20:23 +00:00
|
|
|
|
2020-06-08 00:50:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hypervisor"
|
|
|
|
version = "0.1.0"
|
2020-06-03 19:23:56 +00:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
2022-07-18 15:47:51 +00:00
|
|
|
"byteorder",
|
2020-11-19 19:20:23 +00:00
|
|
|
"env_logger",
|
2020-11-13 11:30:25 +00:00
|
|
|
"iced-x86",
|
2020-06-03 19:23:56 +00:00
|
|
|
"kvm-bindings",
|
|
|
|
"kvm-ioctls",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-12-03 22:43:48 +00:00
|
|
|
"mshv-bindings",
|
|
|
|
"mshv-ioctls",
|
2020-06-03 19:23:56 +00:00
|
|
|
"serde",
|
2022-07-28 11:18:08 +00:00
|
|
|
"serde_with",
|
2020-06-03 19:23:56 +00:00
|
|
|
"thiserror",
|
2022-07-21 13:15:15 +00:00
|
|
|
"vfio-ioctls",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2020-06-03 19:23:56 +00:00
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
2020-06-08 00:50:38 +00:00
|
|
|
|
2020-11-13 11:30:25 +00:00
|
|
|
[[package]]
|
|
|
|
name = "iced-x86"
|
2023-01-03 23:03:13 +00:00
|
|
|
version = "1.18.0"
|
2020-11-13 11:30:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-03 23:03:13 +00:00
|
|
|
checksum = "1dd04b950d75b3498320253b17fb92745b2cc79ead8814aede2f7c1bab858bec"
|
2020-11-13 11:30:25 +00: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-01-17 12:53:55 +00:00
|
|
|
version = "1.0.4"
|
2022-11-28 13:08:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e"
|
2022-11-28 13:08:13 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2023-02-06 23:03:49 +00:00
|
|
|
"windows-sys 0.42.0",
|
2022-11-28 13:08:13 +00:00
|
|
|
]
|
2022-09-16 00:45:44 +00:00
|
|
|
|
2020-07-27 13:58:53 +00:00
|
|
|
[[package]]
|
|
|
|
name = "io-uring"
|
2023-01-20 08:46:01 +00:00
|
|
|
version = "0.5.12"
|
2020-08-10 06:51:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-20 08:46:01 +00:00
|
|
|
checksum = "41c85eff7f7c8d3ab8c7ec87313c0c194bbaf4371bb7d40f80293ba01bce8264"
|
2020-07-27 13:58:53 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2020-07-27 13:58:53 +00: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-02-14 23:58:31 +00:00
|
|
|
version = "0.4.3"
|
2022-11-28 13:08:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-14 23:58:31 +00:00
|
|
|
checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
|
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-02-14 23:58:31 +00:00
|
|
|
"windows-sys 0.45.0",
|
2022-11-28 13:08:13 +00:00
|
|
|
]
|
|
|
|
|
2019-07-16 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2022-12-19 23:19:49 +00:00
|
|
|
version = "1.0.5"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-19 23:19:49 +00:00
|
|
|
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
|
2019-07-16 09:54:33 +00:00
|
|
|
|
2019-02-22 16:05:02 +00: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 15:36:33 +00:00
|
|
|
dependencies = [
|
2020-02-16 20:42:42 +00:00
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-11-29 15:36:33 +00:00
|
|
|
]
|
2019-02-22 16:05:02 +00: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 16:05:02 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"kvm-bindings",
|
|
|
|
"libc",
|
|
|
|
"vmm-sys-util",
|
2019-02-21 16:39:34 +00:00
|
|
|
]
|
|
|
|
|
2019-07-16 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
2019-08-26 01:05:43 +00:00
|
|
|
version = "1.4.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-01 16:59:51 +00:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2019-07-16 09:54:33 +00:00
|
|
|
|
2019-02-21 16:39:34 +00:00
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2023-01-05 23:03:41 +00:00
|
|
|
version = "0.2.139"
|
2019-02-21 16:39:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-05 23:03:41 +00:00
|
|
|
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
|
2019-02-21 16:39:34 +00:00
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "libssh2-sys"
|
2023-01-25 23:04:36 +00:00
|
|
|
version = "0.3.0"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-25 23:04:36 +00:00
|
|
|
checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
|
2019-05-23 15:45:13 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"libz-sys",
|
|
|
|
"openssl-sys",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-05-23 15:45:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libz-sys"
|
2022-05-30 23:10:36 +00:00
|
|
|
version = "1.1.8"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 23:10:36 +00:00
|
|
|
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
|
2019-05-23 15:45:13 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-05-23 15:45:13 +00:00
|
|
|
]
|
|
|
|
|
2019-02-28 13:16:58 +00: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 14:40:09 +00:00
|
|
|
dependencies = [
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-06-03 14:40:09 +00:00
|
|
|
]
|
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
2022-12-14 23:03:15 +00:00
|
|
|
version = "0.1.4"
|
2022-11-28 13:08:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-14 23:03:15 +00:00
|
|
|
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
|
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-01 16:59:51 +00:00
|
|
|
"scopeguard",
|
2020-01-25 22:43:45 +00:00
|
|
|
]
|
|
|
|
|
2019-04-18 10:26:09 +00:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2022-05-02 23:56:28 +00:00
|
|
|
version = "0.4.17"
|
2019-04-18 10:26:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-02 23:56:28 +00:00
|
|
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
2019-04-18 10:26:09 +00:00
|
|
|
dependencies = [
|
2021-10-12 05:09:59 +00:00
|
|
|
"cfg-if",
|
2019-04-18 10:26:09 +00:00
|
|
|
]
|
|
|
|
|
2022-02-20 03:17:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "managed"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0ca88d725a0a943b096803bd34e73a4437208b6077654cc4ecb2947a5f91618d"
|
|
|
|
|
2019-07-16 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2022-05-02 14:21:31 +00:00
|
|
|
version = "2.5.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-02 14:21:31 +00:00
|
|
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
2019-07-16 09:54:33 +00:00
|
|
|
|
2019-09-18 09:14:49 +00: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 09:14:49 +00: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 22:43:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "mshv-bindings"
|
2022-09-07 23:08:42 +00:00
|
|
|
version = "0.1.1"
|
2023-02-02 23:03:17 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/mshv?branch=main#0b2af251285385f8e39c2cd0fe8ffacab534932f"
|
2020-12-03 22:43:48 +00: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-02-02 23:03:17 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/mshv?branch=main#0b2af251285385f8e39c2cd0fe8ffacab534932f"
|
2020-12-03 22:43:48 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"mshv-bindings",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2019-05-08 05:28:02 +00:00
|
|
|
[[package]]
|
|
|
|
name = "net_gen"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-05-08 05:28:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "net_util"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-07-07 15:06:54 +00:00
|
|
|
"epoll",
|
2021-09-15 13:50:03 +00:00
|
|
|
"getrandom",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-01 16:59:51 +00:00
|
|
|
"net_gen",
|
2022-06-20 14:10:55 +00:00
|
|
|
"once_cell",
|
2019-05-01 16:59:51 +00:00
|
|
|
"pnet",
|
2022-06-03 01:16:58 +00:00
|
|
|
"pnet_datalink",
|
2021-03-17 22:41:52 +00:00
|
|
|
"rate_limiter",
|
2019-05-01 16:59:51 +00:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2022-08-10 21:58:36 +00:00
|
|
|
"thiserror",
|
2021-05-21 10:25:18 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-21 10:41:16 +00:00
|
|
|
"virtio-queue",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2020-07-07 14:02:18 +00:00
|
|
|
"vm-virtio",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-05-08 05:28:02 +00: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 03:17:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2022-05-03 23:11:04 +00:00
|
|
|
version = "0.2.15"
|
2022-02-20 03:17:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-03 23:11:04 +00:00
|
|
|
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
2022-02-20 03:17:50 +00: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-11 02:29:53 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-src"
|
2023-02-08 22:30:23 +00:00
|
|
|
version = "111.25.0+1.1.1t"
|
2022-02-11 02:29:53 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-08 22:30:23 +00:00
|
|
|
checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
|
2022-02-11 02:29:53 +00:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
]
|
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2023-01-02 23:03:23 +00:00
|
|
|
version = "0.9.80"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-02 23:03:23 +00:00
|
|
|
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
|
2019-05-23 15:45:13 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"autocfg",
|
|
|
|
"cc",
|
|
|
|
"libc",
|
2022-02-11 02:29:53 +00:00
|
|
|
"openssl-src",
|
2019-05-01 16:59:51 +00:00
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2019-05-23 15:45:13 +00:00
|
|
|
]
|
|
|
|
|
2020-07-06 15:41:45 +00: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-01 16:59:51 +00: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-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-10-12 05:09:59 +00:00
|
|
|
"redox_syscall",
|
2019-05-01 16:59:51 +00: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 03:17:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "paste"
|
2022-12-28 23:02:11 +00:00
|
|
|
version = "1.0.11"
|
2022-02-20 03:17:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-28 23:02:11 +00:00
|
|
|
checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
|
2022-02-20 03:17:50 +00:00
|
|
|
|
2019-04-18 10:26:09 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pci"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-05-06 15:50:56 +00:00
|
|
|
"anyhow",
|
2019-05-01 16:59:51 +00:00
|
|
|
"byteorder",
|
2020-06-02 02:29:54 +00:00
|
|
|
"hypervisor",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2022-02-16 08:55:26 +00: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 11:53:09 +00:00
|
|
|
"vfio-bindings",
|
2019-11-08 15:27:05 +00:00
|
|
|
"vfio-ioctls",
|
2021-06-09 13:43:04 +00:00
|
|
|
"vfio_user",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vm-allocator",
|
|
|
|
"vm-device",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2020-05-06 15:50:56 +00:00
|
|
|
"vm-migration",
|
2019-11-08 14:50:39 +00:00
|
|
|
"vmm-sys-util",
|
2019-04-18 10:26:09 +00:00
|
|
|
]
|
|
|
|
|
2022-01-11 05:27:58 +00: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-02-01 05:24:13 +00:00
|
|
|
"serde",
|
2022-01-11 05:27:58 +00:00
|
|
|
"serde_json",
|
|
|
|
"test_infra",
|
2022-02-15 16:11:58 +00:00
|
|
|
"thiserror",
|
2022-01-11 05:27:58 +00:00
|
|
|
"wait-timeout",
|
|
|
|
]
|
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2022-10-26 23:20:36 +00:00
|
|
|
version = "0.3.26"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-26 23:20:36 +00:00
|
|
|
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
2019-05-23 15:45:13 +00:00
|
|
|
|
2019-07-16 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pnet"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "cd959a8268165518e2bf5546ba84c7b3222744435616381df3c456fe8d983576"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2023-02-03 23:02:15 +00:00
|
|
|
"ipnetwork",
|
2019-05-01 16:59:51 +00:00
|
|
|
"pnet_base",
|
|
|
|
"pnet_datalink",
|
|
|
|
"pnet_packet",
|
2023-02-03 23:02:15 +00:00
|
|
|
"pnet_sys",
|
2019-05-01 16:59:51 +00:00
|
|
|
"pnet_transport",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_base"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00: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 09:54:33 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_datalink"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "c302da22118d2793c312a35fb3da6846cb0fab6c3ad53fd67e37809b06cdafce"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2022-06-03 01:16:58 +00:00
|
|
|
"ipnetwork",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"pnet_base",
|
|
|
|
"pnet_sys",
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_macros"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "2a780e80005c2e463ec25a6e9f928630049a10b43945fea83207207d4a7606f4"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2019-05-01 16:59:51 +00:00
|
|
|
"regex",
|
2021-05-17 07:46:31 +00:00
|
|
|
"syn",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_macros_support"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "e6d932134f32efd7834eb8b16d42418dac87086347d1bc7d142370ef078582bc"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"pnet_base",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_packet"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "8bde678bbd85cb1c2d99dc9fc596e57f03aa725f84f3168b0eaf33eeccb41706"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"glob",
|
|
|
|
"pnet_base",
|
|
|
|
"pnet_macros",
|
|
|
|
"pnet_macros_support",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_sys"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "faf7a58b2803d818a374be9278a1fe8f88fce14b936afbe225000cfcd9c73f16"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"winapi",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pnet_transport"
|
2023-02-03 23:02:15 +00:00
|
|
|
version = "0.33.0"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-03 23:02:15 +00:00
|
|
|
checksum = "813d1c0e4defbe7ee22f6fe1755f122b77bfb5abe77145b1b5baaf463cab9249"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"pnet_base",
|
|
|
|
"pnet_packet",
|
|
|
|
"pnet_sys",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
2019-08-19 09:50:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2023-02-16 23:58:44 +00:00
|
|
|
version = "1.0.51"
|
2019-08-19 09:50:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-16 23:58:44 +00:00
|
|
|
checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
|
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-01 16:59:51 +00:00
|
|
|
"byteorder",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-01 16:59:51 +00: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-01 16:59:51 +00:00
|
|
|
"proc-macro2",
|
2019-08-19 09:50:43 +00:00
|
|
|
]
|
|
|
|
|
2021-03-22 18:23:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rate_limiter"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-03-22 18:23:51 +00: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 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "redox_users"
|
2022-03-30 23:16:44 +00:00
|
|
|
version = "0.4.3"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-30 23:16:44 +00:00
|
|
|
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
2019-05-23 15:45:13 +00: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 15:45:13 +00:00
|
|
|
]
|
|
|
|
|
2019-07-16 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.7.1"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2022-11-25 23:03:32 +00:00
|
|
|
version = "0.6.28"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-25 23:03:32 +00:00
|
|
|
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
|
2019-07-16 09:54:33 +00: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-01 16:59:51 +00: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"
|
|
|
|
version = "0.1.21"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustc-hash"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
|
|
2021-07-26 15:51:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
2022-01-05 23:46:55 +00:00
|
|
|
version = "0.4.0"
|
2021-07-26 15:51:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-05 23:46:55 +00:00
|
|
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
2021-07-26 15:51:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"semver",
|
|
|
|
]
|
|
|
|
|
2022-11-28 13:08:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
2023-02-06 23:03:49 +00:00
|
|
|
version = "0.36.8"
|
2022-09-16 00:45:44 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-06 23:03:49 +00:00
|
|
|
checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
|
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 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.0.12"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
|
2019-07-16 09:54:33 +00: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-01 16:59:51 +00:00
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
2020-01-25 22:43:45 +00:00
|
|
|
|
2020-03-19 10:49:13 +00:00
|
|
|
[[package]]
|
2021-08-17 03:40:11 +00:00
|
|
|
name = "seccompiler"
|
2022-09-14 23:14:12 +00:00
|
|
|
version = "0.3.0"
|
2021-10-01 17:29:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-14 23:14:12 +00:00
|
|
|
checksum = "6f6575e3c2b3a0fe2ef3e53855b6a8dead7c29f783da5e123d378c8c6a89017e"
|
2020-03-19 10:49:13 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2020-03-19 10:49:13 +00:00
|
|
|
]
|
|
|
|
|
2021-07-26 15:51:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
2023-01-11 23:02:55 +00:00
|
|
|
version = "1.0.16"
|
2021-07-26 15:51:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-11 23:02:55 +00:00
|
|
|
checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
|
2021-07-26 15:51:03 +00:00
|
|
|
|
2019-05-08 05:28:02 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.0.152"
|
2019-05-08 05:28:02 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
|
2022-05-17 21:04:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
2019-05-08 05:28:02 +00:00
|
|
|
|
2019-09-27 09:40:50 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "1.0.152"
|
2019-09-27 09:40:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
|
2019-09-27 09:40:50 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-09-27 09:40:50 +00:00
|
|
|
]
|
|
|
|
|
2019-07-16 09:54:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2023-02-11 00:23:25 +00:00
|
|
|
version = "1.0.93"
|
2019-07-16 09:54:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-11 00:23:25 +00:00
|
|
|
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
|
2019-07-16 09:54:33 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
2019-07-16 09:54:33 +00:00
|
|
|
]
|
|
|
|
|
2022-07-28 11:18:08 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_with"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "2.2.0"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "30d904179146de381af4c93d3af6ca4984b3152db687dacb9c3c35e86f39809c"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
"serde_with_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_with_macros"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "2.2.0"
|
2022-07-28 11:18:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "a1966009f3c05f095697c537312f5415d1e3ed31ce0a56942bac4c771c5c335e"
|
2022-07-28 11:18:08 +00:00
|
|
|
dependencies = [
|
|
|
|
"darling",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2022-08-25 08:26:59 +00: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 19:18:20 +00:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook"
|
2022-05-17 02:54:07 +00:00
|
|
|
version = "0.3.14"
|
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 19:18:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-17 02:54:07 +00:00
|
|
|
checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
|
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 19:18:20 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00: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 19:18:20 +00: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 19:18:20 +00: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 19:18:20 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00: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 19:18:20 +00: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 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ssh2"
|
2023-01-25 23:04:36 +00:00
|
|
|
version = "0.9.4"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-25 23:04:36 +00:00
|
|
|
checksum = "e7fe461910559f6d5604c3731d00d2aafc4a83d1665922e280f42f9a168d5455"
|
2019-05-23 15:45:13 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"libssh2-sys",
|
2023-01-17 12:53:55 +00:00
|
|
|
"parking_lot 0.11.2",
|
2019-05-23 15:45:13 +00:00
|
|
|
]
|
|
|
|
|
2019-02-21 16:39:34 +00:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2021-12-31 23:09:17 +00:00
|
|
|
version = "0.10.0"
|
2019-02-21 16:39:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-31 23:09:17 +00:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2019-02-21 16:39:34 +00: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-01 16:59:51 +00: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 18:44:30 +00:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2021-03-23 16:15:48 +00:00
|
|
|
"ssh2",
|
|
|
|
"vmm-sys-util",
|
|
|
|
"wait-timeout",
|
|
|
|
]
|
|
|
|
|
2019-11-18 14:30:54 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2023-01-13 00:15:38 +00:00
|
|
|
version = "1.0.38"
|
2019-11-18 14:30:54 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-13 00:15:38 +00:00
|
|
|
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
|
2019-11-18 14:30:54 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"thiserror-impl",
|
2019-11-18 14:30:54 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2023-01-13 00:15:38 +00:00
|
|
|
version = "1.0.38"
|
2019-11-18 14:30:54 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-13 00:15:38 +00:00
|
|
|
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
|
2019-11-18 14:30:54 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-11-18 14:30:54 +00: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 14:01:26 +00: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 13:00:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "uuid"
|
2023-02-13 23:59:49 +00:00
|
|
|
version = "1.3.0"
|
2021-06-09 13:00:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-13 23:59:49 +00:00
|
|
|
checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
|
2021-07-26 15:51:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
]
|
2021-06-09 13:00:07 +00:00
|
|
|
|
2019-05-23 15:45:13 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
2021-06-21 23:10:33 +00:00
|
|
|
version = "0.2.15"
|
2019-05-23 15:45:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-06-21 23:10:33 +00:00
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2019-05-23 15:45:13 +00:00
|
|
|
|
2021-05-05 15:16:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "versionize"
|
2022-11-28 13:08:13 +00:00
|
|
|
version = "0.1.9"
|
2021-05-05 15:16:19 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-28 13:08:13 +00:00
|
|
|
checksum = "d6e2495726cf917e7ba7ec8bf0f0fceab543dd38d0a4195ed6bef331e38a290f"
|
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 09:42:40 +00:00
|
|
|
[[package]]
|
2019-11-08 15:27:05 +00:00
|
|
|
name = "vfio-bindings"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.4.0"
|
2023-01-31 23:02:11 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vfio?branch=main#43439e056ddfa84a4f7906ee7f2f58be70505c08"
|
2019-11-08 15:27:05 +00:00
|
|
|
dependencies = [
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "vfio-ioctls"
|
2022-12-07 17:39:14 +00:00
|
|
|
version = "0.2.0"
|
2023-01-31 23:02:11 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vfio?branch=main#43439e056ddfa84a4f7906ee7f2f58be70505c08"
|
2019-07-15 09:42:40 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00: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 11:53:09 +00:00
|
|
|
"vfio-bindings",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2021-06-04 11:42:36 +00:00
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "vfio_user"
|
|
|
|
version = "0.1.0"
|
2023-02-21 09:19:36 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vfio-user?branch=main#afbbd5722885e961ce12baea12efe01d52ce14b0"
|
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 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-07-15 09:42:40 +00:00
|
|
|
]
|
|
|
|
|
2021-07-26 15:51:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vhdx"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
"crc32c",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"remain",
|
|
|
|
"thiserror",
|
|
|
|
"uuid",
|
|
|
|
]
|
|
|
|
|
2019-05-21 18:54:53 +00:00
|
|
|
[[package]]
|
2020-02-25 03:26:35 +00: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 18:54:53 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-05-21 18:54:53 +00:00
|
|
|
]
|
|
|
|
|
2022-02-02 10:36:47 +00: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 10:36:47 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"vhost",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.1.0",
|
2022-02-02 10:36:47 +00:00
|
|
|
"virtio-queue",
|
|
|
|
"vm-memory",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2019-10-31 17:16:28 +00: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 09:43:33 +00:00
|
|
|
"block_util",
|
2021-08-04 19:35:56 +00:00
|
|
|
"env_logger",
|
2019-05-01 16:59:51 +00:00
|
|
|
"epoll",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-07-06 15:41:45 +00:00
|
|
|
"option_parser",
|
2019-05-01 16:59:51 +00: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 14:08:08 +00:00
|
|
|
"virtio-queue",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00: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-01 16:59:51 +00:00
|
|
|
"epoll",
|
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-01 16:59:51 +00:00
|
|
|
"net_util",
|
2020-07-06 15:41:45 +00:00
|
|
|
"option_parser",
|
2019-05-01 16:59:51 +00: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 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2020-01-20 16:10:21 +00:00
|
|
|
]
|
|
|
|
|
2019-10-10 07:38:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-bindings"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-01 16:59:51 +00:00
|
|
|
checksum = "3ff512178285488516ed85f15b5d0113a7cdb89e9e8a760b269ae4f02b84bd6b"
|
2019-10-10 07:38:42 +00: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 12:25:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-devices"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"arc-swap",
|
2020-07-14 09:43:33 +00:00
|
|
|
"block_util",
|
2020-07-02 12:25:19 +00:00
|
|
|
"byteorder",
|
|
|
|
"epoll",
|
2021-02-18 15:10:51 +00:00
|
|
|
"event_monitor",
|
2020-07-30 10:40:09 +00:00
|
|
|
"io-uring",
|
2020-07-02 12:25:19 +00:00
|
|
|
"libc",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2020-07-02 12:25:19 +00:00
|
|
|
"net_gen",
|
|
|
|
"net_util",
|
|
|
|
"pci",
|
2021-03-22 18:23:51 +00:00
|
|
|
"rate_limiter",
|
2021-08-17 03:40:11 +00:00
|
|
|
"seccompiler",
|
2020-07-02 12:25:19 +00:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2022-08-25 08:26:59 +00: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 14:34:44 +00:00
|
|
|
"thiserror",
|
2021-05-06 13:34:31 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2020-07-02 12:25:19 +00:00
|
|
|
"vhost",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.2.0",
|
2021-10-21 10:41:16 +00:00
|
|
|
"virtio-queue",
|
2020-07-02 12:25:19 +00:00
|
|
|
"vm-allocator",
|
|
|
|
"vm-device",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2020-07-02 12:25:19 +00:00
|
|
|
"vm-migration",
|
|
|
|
"vm-virtio",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2021-10-21 10:41:16 +00:00
|
|
|
[[package]]
|
|
|
|
name = "virtio-queue"
|
2022-11-28 13:08:13 +00:00
|
|
|
version = "0.7.0"
|
2022-03-07 12:47:51 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-28 13:08:13 +00:00
|
|
|
checksum = "19e927d93d54c365034fd7f31a5f458a1f540de4a37c52e892670dad9692173c"
|
2021-10-21 10:41:16 +00:00
|
|
|
dependencies = [
|
|
|
|
"log",
|
2023-02-21 23:58:46 +00:00
|
|
|
"virtio-bindings 0.1.0",
|
2021-10-21 10:41:16 +00:00
|
|
|
"vm-memory",
|
|
|
|
"vmm-sys-util",
|
|
|
|
]
|
|
|
|
|
2019-04-18 10:26:09 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vm-allocator"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-06-11 14:08:34 +00:00
|
|
|
"arch",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-04-18 10:26:09 +00:00
|
|
|
]
|
|
|
|
|
2019-10-07 16:57:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vm-device"
|
|
|
|
version = "0.1.0"
|
2019-11-18 14:30:54 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"anyhow",
|
2022-05-10 21:23:18 +00:00
|
|
|
"hypervisor",
|
2019-05-01 16:59:51 +00:00
|
|
|
"serde",
|
|
|
|
"thiserror",
|
2021-02-23 13:47:56 +00:00
|
|
|
"vfio-ioctls",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vmm-sys-util",
|
2019-11-18 14:30:54 +00:00
|
|
|
]
|
2019-10-07 16:57:19 +00: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"
|
2022-12-07 17:39:14 +00:00
|
|
|
source = "git+https://github.com/rust-vmm/vm-fdt?branch=main#c5a99ab71b130435927d19b50c85fcd5ce904a8c"
|
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-01 16:59:51 +00: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 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-02-22 16:05:02 +00:00
|
|
|
]
|
|
|
|
|
2019-05-06 17:27:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vm-virtio"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2021-10-21 10:41:16 +00:00
|
|
|
"virtio-queue",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-06 17:27:40 +00:00
|
|
|
]
|
|
|
|
|
2019-02-22 16:05:02 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vmm"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"acpi_tables",
|
|
|
|
"anyhow",
|
|
|
|
"arc-swap",
|
|
|
|
"arch",
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2020-07-30 10:44:05 +00:00
|
|
|
"block_util",
|
2019-05-01 16:59:51 +00:00
|
|
|
"devices",
|
|
|
|
"epoll",
|
2021-02-17 11:24:36 +00:00
|
|
|
"event_monitor",
|
2022-02-20 03:17:50 +00:00
|
|
|
"gdbstub",
|
|
|
|
"gdbstub_arch",
|
2020-06-02 02:29:54 +00:00
|
|
|
"hypervisor",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
|
|
|
"linux-loader",
|
2021-05-17 07:46:31 +00:00
|
|
|
"log",
|
2019-05-01 16:59:51 +00:00
|
|
|
"micro_http",
|
|
|
|
"net_util",
|
2022-06-20 13:53:39 +00:00
|
|
|
"once_cell",
|
2020-07-06 15:41:45 +00:00
|
|
|
"option_parser",
|
2019-05-01 16:59:51 +00:00
|
|
|
"pci",
|
|
|
|
"qcow",
|
2021-08-17 03:40:11 +00:00
|
|
|
"seccompiler",
|
2019-05-01 16:59:51 +00:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2022-08-25 08:26:59 +00:00
|
|
|
"serial_buffer",
|
2019-05-01 16:59:51 +00:00
|
|
|
"signal-hook",
|
2020-10-26 16:11:02 +00:00
|
|
|
"thiserror",
|
2022-06-21 14:01:26 +00:00
|
|
|
"tracer",
|
2021-06-09 13:00:07 +00:00
|
|
|
"uuid",
|
2021-05-21 12:50:41 +00:00
|
|
|
"versionize",
|
|
|
|
"versionize_derive",
|
2019-11-08 15:27:05 +00:00
|
|
|
"vfio-ioctls",
|
2021-08-11 10:19:33 +00:00
|
|
|
"vfio_user",
|
2021-07-26 15:51:03 +00:00
|
|
|
"vhdx",
|
2020-07-02 12:25:19 +00:00
|
|
|
"virtio-devices",
|
2021-10-21 10:41:16 +00:00
|
|
|
"virtio-queue",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vm-allocator",
|
|
|
|
"vm-device",
|
2021-10-22 08:29:33 +00:00
|
|
|
"vm-memory",
|
2019-05-01 16:59:51 +00:00
|
|
|
"vm-migration",
|
|
|
|
"vm-virtio",
|
|
|
|
"vmm-sys-util",
|
2019-02-28 14:26:30 +00:00
|
|
|
]
|
|
|
|
|
2019-10-23 07:44:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vmm-sys-util"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.11.1"
|
2019-10-23 07:44:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "dd64fe09d8e880e600c324e7d664760a17f56e9672b7495a86381b49e4f72f46"
|
2019-10-23 07:44:42 +00:00
|
|
|
dependencies = [
|
2021-05-17 07:46:31 +00:00
|
|
|
"bitflags",
|
2019-05-01 16:59:51 +00:00
|
|
|
"libc",
|
2020-02-17 14:28:24 +00:00
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
2019-10-23 07:44:42 +00:00
|
|
|
]
|
|
|
|
|
2020-10-28 23:40:50 +00: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 16:39:34 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-07-06 08:39:44 +00:00
|
|
|
version = "0.3.9"
|
2019-02-21 16:39:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-06 08:39:44 +00:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2019-02-21 16:39:34 +00:00
|
|
|
dependencies = [
|
2019-05-01 16:59:51 +00:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2019-02-21 16:39:34 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019-05-01 16:59:51 +00:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2019-02-21 16:39:34 +00:00
|
|
|
|
2020-11-19 19:20:23 +00: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 19:20:23 +00:00
|
|
|
]
|
|
|
|
|
2019-02-21 16:39:34 +00: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-01 16:59:51 +00:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2020-12-03 22:43:48 +00: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 = [
|
|
|
|
"windows_aarch64_gnullvm",
|
2022-11-28 13:08:13 +00:00
|
|
|
"windows_aarch64_msvc",
|
2023-02-06 23:03:49 +00:00
|
|
|
"windows_i686_gnu",
|
|
|
|
"windows_i686_msvc",
|
|
|
|
"windows_x86_64_gnu",
|
|
|
|
"windows_x86_64_gnullvm",
|
|
|
|
"windows_x86_64_msvc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.45.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
|
|
dependencies = [
|
|
|
|
"windows-targets",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
|
|
|
version = "0.42.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm",
|
|
|
|
"windows_aarch64_msvc",
|
2022-11-28 13:08:13 +00:00
|
|
|
"windows_i686_gnu",
|
|
|
|
"windows_i686_msvc",
|
|
|
|
"windows_x86_64_gnu",
|
2022-11-09 23:02:50 +00:00
|
|
|
"windows_x86_64_gnullvm",
|
2022-11-28 13:08:13 +00:00
|
|
|
"windows_x86_64_msvc",
|
2022-11-09 23:02:50 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2023-01-17 12:53:55 +00:00
|
|
|
version = "0.42.1"
|
2022-11-09 23:02:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-17 12:53:55 +00:00
|
|
|
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
|
2022-11-09 23:02:50 +00:00
|
|
|
|
2020-12-03 22:43:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zerocopy"
|
2021-11-11 23:12:56 +00:00
|
|
|
version = "0.6.1"
|
2020-12-03 22:43:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-11 23:12:56 +00:00
|
|
|
checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236"
|
2020-12-03 22:43:48 +00:00
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
"zerocopy-derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zerocopy-derive"
|
2022-10-12 09:23:50 +00:00
|
|
|
version = "0.3.2"
|
2020-12-03 22:43:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-12 09:23:50 +00:00
|
|
|
checksum = "6505e6815af7de1746a08f69c69606bb45695a17149517680f3b2149713b19a3"
|
2020-12-03 22:43:48 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2022-10-12 09:23:50 +00:00
|
|
|
"quote",
|
2020-12-03 22:43:48 +00:00
|
|
|
"syn",
|
|
|
|
]
|