Cargo.toml 588 B

1234567891011121314151617181920212223242526
  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. single-hart = []
  15. [dependencies]
  16. r0 = "1.0.0"
  17. riscv = "0.10"
  18. riscv-rt-macros = { path = "macros", version = "0.2.0" }
  19. [dev-dependencies]
  20. panic-halt = "0.2.0"
  21. [build-dependencies]
  22. riscv-target = "0.1.2"