Cargo.toml 528 B

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