Cargo.toml 518 B

123456789101112131415
  1. [package]
  2. name = "riscv"
  3. version = "0.1.0"
  4. authors = ["Runji Wang <wangrunji0408@163.com>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. log = "0.4"
  9. riscv = "0.6"
  10. opensbi-rt = { git = "https://github.com/rcore-os/opensbi-rt.git", rev = "1308cc5" }
  11. device_tree = { git = "https://github.com/rcore-os/device_tree-rs", rev = "2fa8411" }
  12. virtio-drivers = { path = "../.." }
  13. lazy_static = { version = "1.4", features = ["spin_no_std"] }