• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "riscv64"
3version = "0.1.0"
4authors = ["Rivos Inc."]
5edition = "2021"
6
7[features]
8gdb = ["gdbstub", "gdbstub_arch", "arch/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" }
18libc = "0.2"
19rand = "0.8"
20remain = "0.2"
21resources = { path = "../resources" }
22sync = { path = "../common/sync" }
23thiserror = "1"
24base = { path = "../base" }
25vm_control = { path = "../vm_control" }
26vm_memory = { path = "../vm_memory" }
27
28[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
29minijail = "*"
30