Cargo.toml 442 B

1234567891011121314151617
  1. [package]
  2. name = "arch"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. eonix_mm = { path = "../crates/eonix_mm" }
  7. percpu-macros = { path = "./percpu-macros" }
  8. buddy_allocator = { path = "../crates/buddy_allocator" }
  9. intrusive_list = { path = "../crates/intrusive_list" }
  10. cfg-if = "1.0"
  11. [target.'cfg(target_arch = "riscv64")'.dependencies]
  12. sbi = "0.3.0"
  13. riscv = { version = "0.13.0", features = ["s-mode"] }
  14. spin = "0.10.0"
  15. fdt = "0.1.5"