mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
045a3074ef
The newest chrono version is currently on the 0.4.x branch, but there are preparations to release a 0.5.x version. Explicitly specify a 0.4.x version in our dependencies since there will be backwards-incompatible API breakages in 0.5.x. <https://github.com/chronotope/chrono/issues/970> The exact version chosen (chrono 0.4.19) matches the version we have pinned in Cargo.lock currently and will match any newer 0.4.x releases, so there should be no functional change. BUG=None TEST=cargo build Change-Id: Ifa24a547e435ab4987be9358343e6b25c1385c66 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4774870 Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Dennis Kempin <denniskempin@google.com>
40 lines
998 B
TOML
40 lines
998 B
TOML
[package]
|
|
name = "x86_64"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
gdb = ["gdbstub_arch", "arch/gdb"]
|
|
seccomp_trace = []
|
|
swap = ["swap/enable"]
|
|
|
|
[dependencies]
|
|
acpi_tables = {path = "../acpi_tables" }
|
|
arch = { path = "../arch" }
|
|
anyhow = "*"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.19"
|
|
cros_fdt = { path = "../cros_fdt" }
|
|
data_model = { path = "../common/data_model" }
|
|
devices = { path = "../devices" }
|
|
gdbstub_arch = { version = "0.2.4", optional = true }
|
|
hypervisor = { path = "../hypervisor" }
|
|
jail = { path = "../jail" }
|
|
kernel_cmdline = { path = "../kernel_cmdline" }
|
|
kernel_loader = { path = "../kernel_loader" }
|
|
libc = "*"
|
|
once_cell = "1.7.2"
|
|
rand = "0.8"
|
|
remain = "*"
|
|
resources = { path = "../resources" }
|
|
sync = { path = "../common/sync" }
|
|
thiserror = "*"
|
|
base = { path = "../base" }
|
|
swap = { path = "../swap" }
|
|
vm_control = { path = "../vm_control" }
|
|
vm_memory = { path = "../vm_memory" }
|
|
zerocopy = "*"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
minijail = "*"
|