Cargo.toml 525 B

123456789101112131415161718192021
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.6.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 = "0.2.2"
  12. riscv = "0.5.3"
  13. riscv-rt-macros = { path = "macros", version = "0.1.6" }
  14. [features]
  15. inline-asm = ["riscv/inline-asm"]
  16. [dev-dependencies]
  17. riscv = "0.5.3"
  18. panic-halt = "0.2.0"