Cargo.toml 511 B

12345678910111213141516171819202122232425262728
  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. panic-halt = "0.2.0"
  11. [[bin]]
  12. name = "rustsbi-prototyper"
  13. test = false
  14. bench = false
  15. [workspace]
  16. members = ["xtask"]
  17. [workspace.package]
  18. edition = "2021"
  19. license = "MulanPSL-2.0 OR MIT"
  20. repository = "https://github.com/rustsbi/prototyper"
  21. [profile.release]
  22. debug = true