Cargo.toml 688 B

12345678910111213141516171819202122232425262728293031323334
  1. cargo-features = ["per-package-target"]
  2. [package]
  3. name = "rustsbi-prototyper"
  4. version = "0.0.0"
  5. edition.workspace = true
  6. license.workspace = true
  7. repository.workspace = true
  8. forced-target = "riscv64imac-unknown-none-elf"
  9. [dependencies]
  10. log = "0.4.21"
  11. panic-halt = "0.2.0"
  12. riscv = "0.11.1"
  13. rustsbi = { git = "https://github.com/rustsbi/rustsbi", features = ["machine"] }
  14. sifive-test-device = "0.0.0"
  15. spin = "0.9.8"
  16. uart16550 = "0.0.1"
  17. [[bin]]
  18. name = "rustsbi-prototyper"
  19. test = false
  20. bench = false
  21. [workspace]
  22. members = ["xtask"]
  23. [workspace.package]
  24. edition = "2021"
  25. license = "MulanPSL-2.0 OR MIT"
  26. repository = "https://github.com/rustsbi/prototyper"
  27. [profile.release]
  28. debug = true