1[package] 2name = "riscv64" 3version = "0.1.0" 4authors = ["Rivos Inc."] 5edition = "2021" 6 7[features] 8gdb = ["gdbstub", "gdbstub_arch", "arch/gdb", "hypervisor/gdb"] 9 10[dependencies] 11arch = { path = "../arch" } 12cros_fdt = { path = "../cros_fdt" } 13devices = { path = "../devices" } 14gdbstub = { version = "0.7.0", optional = true } 15gdbstub_arch = { version = "0.3.0", optional = true } 16hypervisor = { path = "../hypervisor" } 17kernel_cmdline = { path = "../kernel_cmdline" } 18kvm = { path = "../kvm" } 19kvm_sys = { path = "../kvm_sys" } 20libc = "*" 21rand = "0.8" 22remain = "*" 23resources = { path = "../resources" } 24sync = { path = "../common/sync" } 25thiserror = "*" 26base = { path = "../base" } 27vm_control = { path = "../vm_control" } 28vm_memory = { path = "../vm_memory" } 29 30[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] 31minijail = "*" 32