Cargo.toml 516 B

12345678910111213141516171819
  1. [package]
  2. name = "rustsbi-qemu"
  3. version = "0.1.0"
  4. authors = ["luojia65 <[email protected]>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. rustsbi = { path = "../../rustsbi" }
  9. linked_list_allocator = "0.8"
  10. lazy_static = { version = "1", features = ["spin_no_std"] }
  11. spin = "0.5"
  12. riscv = { version = "0.6", features = ["inline-asm"] }
  13. # 这几个其实不用,应该使用对应的hal库实现
  14. embedded-hal = "1.0.0-alpha.1"
  15. nb = "1"