Cargo.toml 571 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.11.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. [features]
  13. s-mode = []
  14. [dependencies]
  15. r0 = "1.0.0"
  16. riscv = "0.10"
  17. riscv-rt-macros = { path = "macros", version = "0.2.0" }
  18. [dev-dependencies]
  19. panic-halt = "0.2.0"
  20. [build-dependencies]
  21. riscv-target = "0.1.2"