Cargo.toml 456 B

12345678910111213141516171819
  1. [package]
  2. name = "riscv-rt"
  3. version = "0.4.0"
  4. repository = "https://github.com/rust-embedded/riscv-rt"
  5. authors = [
  6. "The RISC-V Team <risc-v@teams.rust-embedded.org>",
  7. "David Craven <david@craven.ch>",
  8. ]
  9. categories = ["embedded", "no-std"]
  10. description = "Minimal runtime / startup for RISC-V CPU's"
  11. keywords = ["riscv", "runtime", "startup"]
  12. license = "ISC"
  13. [dependencies]
  14. r0 = "0.2.2"
  15. riscv = "0.4.0"
  16. [features]
  17. inline-asm = ["riscv/inline-asm"]