4
0

Cargo.toml 468 B

1234567891011121314151617
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.5.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.0"
  13. riscv-rt-macros = { path = "macros", version = "0.1.5" }
  14. [features]
  15. inline-asm = ["riscv/inline-asm"]