Cargo.toml 464 B

12345678910111213141516171819
  1. [package]
  2. name = "riscv"
  3. version = "0.5.6"
  4. repository = "https://github.com/rust-embedded/riscv"
  5. authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
  6. categories = ["embedded", "hardware-support", "no-std"]
  7. description = "Low level access to RISC-V processors"
  8. keywords = ["riscv", "register", "peripheral"]
  9. license = "ISC"
  10. [dependencies]
  11. bare-metal = "0.2.5"
  12. bit_field = "0.10.0"
  13. [build-dependencies]
  14. riscv-target = "0.1.2"
  15. [features]
  16. inline-asm = []