Cargo.toml 528 B

123456789101112131415161718192021
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.8.1"
  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. [dependencies]
  12. r0 = "1.0.0"
  13. riscv = "0.8"
  14. riscv-rt-macros = { path = "macros", version = "0.1.6" }
  15. [dev-dependencies]
  16. panic-halt = "0.2.0"
  17. [build-dependencies]
  18. riscv-target = "0.1.2"