Cargo.toml 705 B

1234567891011121314151617181920212223242526272829303132333435
  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. aclint = "0.0.0"
  11. log = "0.4.21"
  12. panic-halt = "0.2.0"
  13. riscv = "0.11.1"
  14. rustsbi = { git = "https://github.com/rustsbi/rustsbi", features = ["machine"] }
  15. sifive-test-device = "0.0.0"
  16. spin = "0.9.8"
  17. uart16550 = "0.0.1"
  18. [[bin]]
  19. name = "rustsbi-prototyper"
  20. test = false
  21. bench = false
  22. [workspace]
  23. members = ["xtask"]
  24. [workspace.package]
  25. edition = "2021"
  26. license = "MulanPSL-2.0 OR MIT"
  27. repository = "https://github.com/rustsbi/prototyper"
  28. [profile.release]
  29. debug = true