Cargo.toml 552 B

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