2018-02-14 06:09:43 +00:00
|
|
|
[package]
|
|
|
|
name = "arch"
|
|
|
|
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"
|
2018-02-14 06:09:43 +00:00
|
|
|
|
2020-10-21 06:57:33 +00:00
|
|
|
[features]
|
2020-11-10 09:24:04 +00:00
|
|
|
power-monitor-powerd = ["power_monitor/powerd"]
|
2022-07-04 10:58:14 +00:00
|
|
|
gdb = ["gdbstub", "gdbstub_arch"]
|
2022-02-25 18:00:17 +00:00
|
|
|
direct = []
|
2022-12-05 06:27:06 +00:00
|
|
|
trace_marker = ["cros_tracing/trace_marker"]
|
2023-03-08 00:58:15 +00:00
|
|
|
seccomp_trace = []
|
2020-10-21 06:57:33 +00:00
|
|
|
|
2018-02-14 06:09:43 +00:00
|
|
|
[dependencies]
|
2020-05-21 06:27:59 +00:00
|
|
|
acpi_tables = { path = "../acpi_tables" }
|
2022-03-10 04:26:04 +00:00
|
|
|
anyhow = "*"
|
2022-03-16 19:16:04 +00:00
|
|
|
base = { path = "../base" }
|
2022-07-02 01:11:34 +00:00
|
|
|
cfg-if = "1.0.0"
|
2022-10-18 19:50:50 +00:00
|
|
|
cros_fdt = { path = "../cros_fdt" }
|
2022-12-05 06:27:06 +00:00
|
|
|
cros_tracing = { path = "../cros_tracing" }
|
2018-02-14 06:09:43 +00:00
|
|
|
devices = { path = "../devices" }
|
2022-07-25 12:28:01 +00:00
|
|
|
gdbstub = { version = "0.6.3", optional = true }
|
|
|
|
gdbstub_arch = { version = "0.2.4", optional = true }
|
2020-06-21 04:45:32 +00:00
|
|
|
hypervisor = { path = "../hypervisor" }
|
2023-02-08 07:36:08 +00:00
|
|
|
jail = { path = "../jail" }
|
2018-02-14 06:09:43 +00:00
|
|
|
kernel_cmdline = { path = "../kernel_cmdline" }
|
|
|
|
libc = "*"
|
2019-04-06 21:30:04 +00:00
|
|
|
resources = { path = "../resources" }
|
2022-06-30 02:52:51 +00:00
|
|
|
remain = "*"
|
2022-06-29 16:42:35 +00:00
|
|
|
serde = { version = "*", features = [ "derive"] }
|
2022-10-25 06:52:41 +00:00
|
|
|
serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] }
|
2021-10-27 18:04:03 +00:00
|
|
|
sync = { path = "../common/sync" }
|
2021-08-16 08:36:10 +00:00
|
|
|
thiserror = "1.0.20"
|
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" }
|
2022-06-30 02:52:51 +00:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
minijail = "*" # provided by ebuild
|
|
|
|
power_monitor = { path = "../power_monitor" }
|
|
|
|
|
2023-01-25 10:13:32 +00:00
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
|
|
swap = { path = "../swap", optional = true }
|
|
|
|
|
2022-06-30 02:52:51 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = "*"
|
2022-11-29 08:07:29 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "*"
|