Cargo.toml 675 B

123456789101112131415161718192021222324
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.13.0"
  4. rust-version = "1.60"
  5. repository = "https://github.com/rust-embedded/riscv"
  6. authors = ["The RISC-V Team <[email protected]>"]
  7. categories = ["embedded", "no-std"]
  8. description = "Minimal runtime / startup for RISC-V CPU's"
  9. documentation = "https://docs.rs/riscv-rt"
  10. keywords = ["riscv", "runtime", "startup"]
  11. license = "ISC"
  12. edition = "2021"
  13. links = "riscv-rt" # Prevent multiple versions of riscv-rt being linked
  14. [features]
  15. s-mode = []
  16. single-hart = []
  17. [dependencies]
  18. riscv = {path = "../riscv", version = "0.11.1"}
  19. riscv-rt-macros = { path = "macros", version = "0.2.1" }
  20. [dev-dependencies]
  21. panic-halt = "0.2.0"