2017-04-21 00:33:17 +00:00
|
|
|
[package]
|
|
|
|
name = "x86_64"
|
|
|
|
version = "0.1.0"
|
2022-12-29 21:24:33 +00:00
|
|
|
authors = ["The ChromiumOS Authors"]
|
2022-03-08 01:16:09 +00:00
|
|
|
edition = "2021"
|
2017-04-21 00:33:17 +00:00
|
|
|
|
2020-10-21 06:57:33 +00:00
|
|
|
[features]
|
2021-08-04 18:44:49 +00:00
|
|
|
gdb = ["gdbstub_arch", "arch/gdb"]
|
2022-06-16 14:25:07 +00:00
|
|
|
direct = ["arch/direct", "devices/direct"]
|
2020-10-21 06:57:33 +00:00
|
|
|
|
2017-04-21 00:33:17 +00:00
|
|
|
[dependencies]
|
2022-06-11 00:51:19 +00:00
|
|
|
acpi_tables = {path = "../acpi_tables" }
|
2018-02-14 06:09:43 +00:00
|
|
|
arch = { path = "../arch" }
|
2022-04-05 12:48:12 +00:00
|
|
|
anyhow = "*"
|
2022-06-11 00:51:19 +00:00
|
|
|
cfg-if = "1.0.0"
|
2022-07-30 00:03:36 +00:00
|
|
|
chrono = "*"
|
2022-10-18 19:50:50 +00:00
|
|
|
cros_fdt = { path = "../cros_fdt" }
|
2021-10-27 18:04:03 +00:00
|
|
|
data_model = { path = "../common/data_model" }
|
2018-02-01 23:52:58 +00:00
|
|
|
devices = { path = "../devices" }
|
2022-07-25 12:28:01 +00:00
|
|
|
gdbstub_arch = { version = "0.2.4", optional = true }
|
2020-06-21 04:45:32 +00:00
|
|
|
hypervisor = { path = "../hypervisor" }
|
2018-02-01 23:52:58 +00:00
|
|
|
kernel_cmdline = { path = "../kernel_cmdline" }
|
|
|
|
kernel_loader = { path = "../kernel_loader" }
|
2017-04-21 00:33:17 +00:00
|
|
|
libc = "*"
|
2022-07-19 19:05:44 +00:00
|
|
|
once_cell = "1.7.2"
|
2022-08-24 21:42:27 +00:00
|
|
|
rand = "0.8"
|
2019-03-11 19:36:30 +00:00
|
|
|
remain = "*"
|
2019-04-06 21:30:04 +00:00
|
|
|
resources = { path = "../resources" }
|
2021-10-27 18:04:03 +00:00
|
|
|
sync = { path = "../common/sync" }
|
2021-08-18 21:25:59 +00:00
|
|
|
thiserror = "*"
|
2022-03-16 19:16:04 +00:00
|
|
|
base = { path = "../base" }
|
2019-12-02 07:50:20 +00:00
|
|
|
vm_control = { path = "../vm_control" }
|
2020-07-21 03:21:11 +00:00
|
|
|
vm_memory = { path = "../vm_memory" }
|
2023-01-31 23:26:24 +00:00
|
|
|
zerocopy = "*"
|
2022-06-11 00:51:19 +00:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
minijail = "*"
|
2023-01-25 10:13:32 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
|
|
swap = { path = "../swap", optional = true }
|