Cargo.toml 545 B

12345678910111213141516171819202122
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.9.0"
  4. rust-version = "1.59"
  5. repository = "https://github.com/rust-embedded/riscv-rt"
  6. authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
  7. categories = ["embedded", "no-std"]
  8. description = "Minimal runtime / startup for RISC-V CPU's"
  9. keywords = ["riscv", "runtime", "startup"]
  10. license = "ISC"
  11. edition = "2018"
  12. [dependencies]
  13. r0 = "1.0.0"
  14. riscv = "0.8"
  15. riscv-rt-macros = { path = "macros", version = "0.2.0" }
  16. [dev-dependencies]
  17. panic-halt = "0.2.0"
  18. [build-dependencies]
  19. riscv-target = "0.1.2"