Cargo.toml 659 B

123456789101112131415161718192021222324252627282930313233
  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. spin = "0.9.8"
  15. uart16550 = "0.0.1"
  16. [[bin]]
  17. name = "rustsbi-prototyper"
  18. test = false
  19. bench = false
  20. [workspace]
  21. members = ["xtask"]
  22. [workspace.package]
  23. edition = "2021"
  24. license = "MulanPSL-2.0 OR MIT"
  25. repository = "https://github.com/rustsbi/prototyper"
  26. [profile.release]
  27. debug = true