mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
5599cbef50
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.62 to 1.0.63. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/1.0.62...1.0.63) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
870 lines
18 KiB
TOML
870 lines
18 KiB
TOML
# This file is automatically @generated by Cargo.
|
|
# It is not intended for manual editing.
|
|
version = 3
|
|
|
|
[[package]]
|
|
name = "acpi_tables"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"vm-memory",
|
|
]
|
|
|
|
[[package]]
|
|
name = "ansi_term"
|
|
version = "0.11.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
|
dependencies = [
|
|
"winapi",
|
|
]
|
|
|
|
[[package]]
|
|
name = "anyhow"
|
|
version = "1.0.38"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
|
|
|
|
[[package]]
|
|
name = "api_client"
|
|
version = "0.1.0"
|
|
|
|
[[package]]
|
|
name = "arbitrary"
|
|
version = "1.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "698b65a961a9d730fb45b6b0327e20207810c9f61ee421b082b27ba003f49e2b"
|
|
|
|
[[package]]
|
|
name = "arc-swap"
|
|
version = "1.2.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d4d7d63395147b81a9e570bcc6243aaf71c017bd666d4909cfef0085bdda8d73"
|
|
|
|
[[package]]
|
|
name = "arch"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"acpi_tables",
|
|
"anyhow",
|
|
"arch_gen",
|
|
"byteorder",
|
|
"hypervisor",
|
|
"libc",
|
|
"linux-loader",
|
|
"log",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"thiserror",
|
|
"vm-memory",
|
|
"vm-migration",
|
|
]
|
|
|
|
[[package]]
|
|
name = "arch_gen"
|
|
version = "0.1.0"
|
|
|
|
[[package]]
|
|
name = "atty"
|
|
version = "0.2.14"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
dependencies = [
|
|
"hermit-abi",
|
|
"libc",
|
|
"winapi",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bitflags"
|
|
version = "1.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
|
|
|
[[package]]
|
|
name = "block_util"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"io-uring",
|
|
"libc",
|
|
"log",
|
|
"qcow",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"thiserror",
|
|
"virtio-bindings",
|
|
"vm-memory",
|
|
"vm-virtio",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "byteorder"
|
|
version = "1.4.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
|
|
|
|
[[package]]
|
|
name = "cc"
|
|
version = "1.0.67"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
|
|
|
|
[[package]]
|
|
name = "cfg-if"
|
|
version = "1.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
[[package]]
|
|
name = "clap"
|
|
version = "2.33.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
|
|
dependencies = [
|
|
"ansi_term",
|
|
"atty",
|
|
"bitflags",
|
|
"strsim",
|
|
"term_size",
|
|
"textwrap",
|
|
"unicode-width",
|
|
"vec_map",
|
|
]
|
|
|
|
[[package]]
|
|
name = "cloud-hypervisor"
|
|
version = "0.13.0"
|
|
dependencies = [
|
|
"anyhow",
|
|
"api_client",
|
|
"clap",
|
|
"epoll",
|
|
"event_monitor",
|
|
"hypervisor",
|
|
"libc",
|
|
"log",
|
|
"option_parser",
|
|
"seccomp",
|
|
"serde_json",
|
|
"signal-hook",
|
|
"thiserror",
|
|
"vm-memory",
|
|
"vmm",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "cloud-hypervisor-fuzz"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"block_util",
|
|
"cloud-hypervisor",
|
|
"libc",
|
|
"libfuzzer-sys",
|
|
"qcow",
|
|
"seccomp",
|
|
"virtio-devices",
|
|
"vm-memory",
|
|
"vm-virtio",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "devices"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"acpi_tables",
|
|
"anyhow",
|
|
"bitflags",
|
|
"byteorder",
|
|
"epoll",
|
|
"libc",
|
|
"log",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"vm-device",
|
|
"vm-memory",
|
|
"vm-migration",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "epoll"
|
|
version = "4.3.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "20df693c700404f7e19d4d6fae6b15215d2913c27955d2b9d6f2c0f537511cd0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "event_monitor"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"libc",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
]
|
|
|
|
[[package]]
|
|
name = "form_urlencoded"
|
|
version = "1.0.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
|
dependencies = [
|
|
"matches",
|
|
"percent-encoding",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hermit-abi"
|
|
version = "0.1.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
|
|
dependencies = [
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hypervisor"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"anyhow",
|
|
"epoll",
|
|
"iced-x86",
|
|
"kvm-bindings",
|
|
"kvm-ioctls",
|
|
"libc",
|
|
"log",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"thiserror",
|
|
"vm-memory",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "iced-x86"
|
|
version = "1.10.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "644fd8d7e49d1ccae568a8fbb873a7ee7fcb3bc9214a474a5e55c03b6d1fa5ac"
|
|
dependencies = [
|
|
"lazy_static",
|
|
"rustc_version",
|
|
"static_assertions",
|
|
]
|
|
|
|
[[package]]
|
|
name = "idna"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21"
|
|
dependencies = [
|
|
"matches",
|
|
"unicode-bidi",
|
|
"unicode-normalization",
|
|
]
|
|
|
|
[[package]]
|
|
name = "io-uring"
|
|
version = "0.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4e06a309d419b77e3036c1eb5683482c9ee51cff165e448d04bd601b6cd16360"
|
|
dependencies = [
|
|
"bitflags",
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "itoa"
|
|
version = "0.4.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
|
|
|
|
[[package]]
|
|
name = "kvm-bindings"
|
|
version = "0.4.0"
|
|
source = "git+https://github.com/cloud-hypervisor/kvm-bindings?branch=ch-v0.4.0#1a68725639283e622f4bb64584885b30bfe8be44"
|
|
dependencies = [
|
|
"serde",
|
|
"serde_derive",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "kvm-ioctls"
|
|
version = "0.8.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "74058b16912c6723db02d4ca3ec919b73cd41512ccd3b6202cf91ae8d6c9dce5"
|
|
dependencies = [
|
|
"kvm-bindings",
|
|
"libc",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "lazy_static"
|
|
version = "1.4.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
[[package]]
|
|
name = "libc"
|
|
version = "0.2.88"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a"
|
|
|
|
[[package]]
|
|
name = "libfuzzer-sys"
|
|
version = "0.4.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "86c975d637bc2a2f99440932b731491fc34c7f785d239e38af3addd3c2fd0e46"
|
|
dependencies = [
|
|
"arbitrary",
|
|
"cc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "linux-loader"
|
|
version = "0.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c819cc8275b0f2c1ed9feec455ca288b45d82932384a6a5f7a86812ee3427459"
|
|
dependencies = [
|
|
"vm-memory",
|
|
]
|
|
|
|
[[package]]
|
|
name = "log"
|
|
version = "0.4.14"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
|
|
dependencies = [
|
|
"cfg-if",
|
|
]
|
|
|
|
[[package]]
|
|
name = "matches"
|
|
version = "0.1.8"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
|
|
|
[[package]]
|
|
name = "micro_http"
|
|
version = "0.1.0"
|
|
source = "git+https://github.com/firecracker-microvm/micro-http?branch=master#59ab64440a95f7b16253fef67b5201c2ec4adaf7"
|
|
dependencies = [
|
|
"epoll",
|
|
]
|
|
|
|
[[package]]
|
|
name = "net_gen"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "net_util"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"epoll",
|
|
"libc",
|
|
"log",
|
|
"net_gen",
|
|
"serde",
|
|
"virtio-bindings",
|
|
"vm-memory",
|
|
"vm-virtio",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "option_parser"
|
|
version = "0.1.0"
|
|
|
|
[[package]]
|
|
name = "pci"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"anyhow",
|
|
"byteorder",
|
|
"hypervisor",
|
|
"libc",
|
|
"log",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"vfio-bindings",
|
|
"vfio-ioctls",
|
|
"vm-allocator",
|
|
"vm-device",
|
|
"vm-memory",
|
|
"vm-migration",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "percent-encoding"
|
|
version = "2.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
|
|
|
[[package]]
|
|
name = "proc-macro2"
|
|
version = "1.0.24"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
|
|
dependencies = [
|
|
"unicode-xid",
|
|
]
|
|
|
|
[[package]]
|
|
name = "qcow"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"byteorder",
|
|
"libc",
|
|
"log",
|
|
"remain",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "quote"
|
|
version = "1.0.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "remain"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "70ba1e78fa68412cb93ef642fd4d20b9a941be49ee9333875ebaf13112673ea7"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rustc_version"
|
|
version = "0.2.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
|
dependencies = [
|
|
"semver",
|
|
]
|
|
|
|
[[package]]
|
|
name = "ryu"
|
|
version = "1.0.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
|
|
|
|
[[package]]
|
|
name = "seccomp"
|
|
version = "0.1.0"
|
|
source = "git+https://github.com/firecracker-microvm/firecracker?tag=v0.22.0#cc5387637c132e500b4857b80b5a239d8d732b77"
|
|
dependencies = [
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "semver"
|
|
version = "0.9.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
|
dependencies = [
|
|
"semver-parser",
|
|
]
|
|
|
|
[[package]]
|
|
name = "semver-parser"
|
|
version = "0.7.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
|
[[package]]
|
|
name = "serde"
|
|
version = "1.0.124"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "bd761ff957cb2a45fbb9ab3da6512de9de55872866160b23c25f1a841e99d29f"
|
|
|
|
[[package]]
|
|
name = "serde_derive"
|
|
version = "1.0.124"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1800f7693e94e186f5e25a28291ae1570da908aff7d97a095dec1e56ff99069b"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "serde_json"
|
|
version = "1.0.64"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
|
|
dependencies = [
|
|
"itoa",
|
|
"ryu",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "signal-hook"
|
|
version = "0.3.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8a7f3f92a1da3d6b1d32245d0cbcbbab0cfc45996d8df619c42bccfa6d2bbb5f"
|
|
dependencies = [
|
|
"libc",
|
|
"signal-hook-registry",
|
|
]
|
|
|
|
[[package]]
|
|
name = "signal-hook-registry"
|
|
version = "1.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
|
|
dependencies = [
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "static_assertions"
|
|
version = "0.3.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7f3eb36b47e512f8f1c9e3d10c2c1965bc992bd9cdb024fa581e2194501c83d3"
|
|
|
|
[[package]]
|
|
name = "strsim"
|
|
version = "0.8.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
|
|
|
[[package]]
|
|
name = "syn"
|
|
version = "1.0.63"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8fd9bc7ccc2688b3344c2f48b9b546648b25ce0b20fc717ee7fa7981a8ca9717"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-xid",
|
|
]
|
|
|
|
[[package]]
|
|
name = "term_size"
|
|
version = "0.3.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
|
|
dependencies = [
|
|
"libc",
|
|
"winapi",
|
|
]
|
|
|
|
[[package]]
|
|
name = "textwrap"
|
|
version = "0.11.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
|
dependencies = [
|
|
"term_size",
|
|
"unicode-width",
|
|
]
|
|
|
|
[[package]]
|
|
name = "thiserror"
|
|
version = "1.0.24"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e"
|
|
dependencies = [
|
|
"thiserror-impl",
|
|
]
|
|
|
|
[[package]]
|
|
name = "thiserror-impl"
|
|
version = "1.0.24"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "tinyvec"
|
|
version = "1.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "317cca572a0e89c3ce0ca1f1bdc9369547fe318a683418e42ac8f59d14701023"
|
|
dependencies = [
|
|
"tinyvec_macros",
|
|
]
|
|
|
|
[[package]]
|
|
name = "tinyvec_macros"
|
|
version = "0.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
|
[[package]]
|
|
name = "unicode-bidi"
|
|
version = "0.3.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
|
|
dependencies = [
|
|
"matches",
|
|
]
|
|
|
|
[[package]]
|
|
name = "unicode-normalization"
|
|
version = "0.1.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
|
|
dependencies = [
|
|
"tinyvec",
|
|
]
|
|
|
|
[[package]]
|
|
name = "unicode-width"
|
|
version = "0.1.8"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
|
|
|
|
[[package]]
|
|
name = "unicode-xid"
|
|
version = "0.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
|
|
|
|
[[package]]
|
|
name = "url"
|
|
version = "2.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b"
|
|
dependencies = [
|
|
"form_urlencoded",
|
|
"idna",
|
|
"matches",
|
|
"percent-encoding",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vec_map"
|
|
version = "0.8.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
|
|
|
[[package]]
|
|
name = "vfio-bindings"
|
|
version = "0.2.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4a21f546f2bda37f5a8cfb138c87f95b8e34d2d78d6a7a92ba3785f4e08604a7"
|
|
dependencies = [
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vfio-ioctls"
|
|
version = "0.1.0"
|
|
source = "git+https://github.com/rust-vmm/vfio-ioctls?branch=master#a87b13bdec026e8144b91f30f35451a966d8c1ca"
|
|
dependencies = [
|
|
"byteorder",
|
|
"kvm-bindings",
|
|
"kvm-ioctls",
|
|
"log",
|
|
"vfio-bindings",
|
|
"vm-memory",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vhost"
|
|
version = "0.1.0"
|
|
source = "git+https://github.com/rust-vmm/vhost?branch=master#77843048602ebc69cb5cd0352a66d98a68cb0e7d"
|
|
dependencies = [
|
|
"bitflags",
|
|
"libc",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "virtio-bindings"
|
|
version = "0.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3ff512178285488516ed85f15b5d0113a7cdb89e9e8a760b269ae4f02b84bd6b"
|
|
|
|
[[package]]
|
|
name = "virtio-devices"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"anyhow",
|
|
"arc-swap",
|
|
"block_util",
|
|
"byteorder",
|
|
"epoll",
|
|
"event_monitor",
|
|
"io-uring",
|
|
"libc",
|
|
"log",
|
|
"net_gen",
|
|
"net_util",
|
|
"pci",
|
|
"seccomp",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"vhost",
|
|
"virtio-bindings",
|
|
"vm-allocator",
|
|
"vm-device",
|
|
"vm-memory",
|
|
"vm-migration",
|
|
"vm-virtio",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vm-allocator"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"arch",
|
|
"libc",
|
|
"vm-memory",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vm-device"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"anyhow",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"thiserror",
|
|
"vfio-ioctls",
|
|
"vm-memory",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vm-memory"
|
|
version = "0.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "625f401b1b8b3ac3d43f53903cd138cfe840bd985f8581e553027b31d2bb8ae8"
|
|
dependencies = [
|
|
"arc-swap",
|
|
"libc",
|
|
"winapi",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vm-migration"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"anyhow",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"thiserror",
|
|
"vm-memory",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vm-virtio"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"log",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"virtio-bindings",
|
|
"vm-memory",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vmm"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"acpi_tables",
|
|
"anyhow",
|
|
"arc-swap",
|
|
"arch",
|
|
"bitflags",
|
|
"block_util",
|
|
"clap",
|
|
"devices",
|
|
"epoll",
|
|
"event_monitor",
|
|
"hypervisor",
|
|
"lazy_static",
|
|
"libc",
|
|
"linux-loader",
|
|
"log",
|
|
"micro_http",
|
|
"net_util",
|
|
"option_parser",
|
|
"pci",
|
|
"qcow",
|
|
"seccomp",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"signal-hook",
|
|
"thiserror",
|
|
"url",
|
|
"vfio-ioctls",
|
|
"virtio-devices",
|
|
"vm-allocator",
|
|
"vm-device",
|
|
"vm-memory",
|
|
"vm-migration",
|
|
"vm-virtio",
|
|
"vmm-sys-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "vmm-sys-util"
|
|
version = "0.8.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "01cf11afbc4ebc0d5c7a7748a77d19e2042677fc15faa2f4ccccb27c18a60605"
|
|
dependencies = [
|
|
"bitflags",
|
|
"libc",
|
|
"serde",
|
|
"serde_derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "winapi"
|
|
version = "0.3.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
dependencies = [
|
|
"winapi-i686-pc-windows-gnu",
|
|
"winapi-x86_64-pc-windows-gnu",
|
|
]
|
|
|
|
[[package]]
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
version = "0.4.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
[[package]]
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
version = "0.4.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|