Cargo.toml 646 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"
  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. documentation = "https://docs.rs/riscv-rt"
  10. keywords = ["riscv", "runtime", "startup"]
  11. license = "ISC"
  12. edition = "2021"
  13. [features]
  14. s-mode = []
  15. single-hart = []
  16. [dependencies]
  17. riscv = {path = "../riscv", version = "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"