crosvm/riscv64/Cargo.toml

30 lines
779 B
TOML
Raw Normal View History

[package]
name = "riscv64"
version = "0.1.0"
authors = ["Rivos Inc."]
edition = "2021"
[features]
gdb = ["gdbstub", "gdbstub_arch", "arch/gdb"]
[dependencies]
arch = { path = "../arch" }
cros_fdt = { path = "../cros_fdt" }
devices = { path = "../devices" }
gdbstub = { version = "0.7.0", optional = true }
gdbstub_arch = { version = "0.3.0", optional = true }
hypervisor = { path = "../hypervisor" }
kernel_cmdline = { path = "../kernel_cmdline" }
libc = "0.2"
rand = "0.8"
remain = "0.2"
resources = { path = "../resources" }
sync = { path = "../common/sync" }
thiserror = "1"
base = { path = "../base" }
vm_control = { path = "../vm_control" }
vm_memory = { path = "../vm_memory" }
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
minijail = "*"