Cargo.toml 688 B

12345678910111213141516171819202122
  1. [package]
  2. name = "riscv"
  3. version = "0.7.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", "hardware-support", "no-std"]
  8. description = "Low level access to RISC-V processors"
  9. keywords = ["riscv", "register", "peripheral"]
  10. license = "ISC"
  11. [package.metadata.docs.rs]
  12. default-target = "riscv64imac-unknown-none-elf"
  13. targets = [
  14. "riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf",
  15. "riscv64imac-unknown-none-elf", "riscv64gc-unknown-none-elf",
  16. ]
  17. [dependencies]
  18. bare-metal = "1.0.0"
  19. bit_field = "0.10.0"
  20. embedded-hal = "0.2.6"