Cargo.toml 651 B

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