4
0

Cargo.toml 739 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "riscv"
  3. version = "0.7.0"
  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. [package.metadata.docs.rs]
  11. default-target = "riscv64imac-unknown-none-elf"
  12. targets = [
  13. "riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf",
  14. "riscv64imac-unknown-none-elf", "riscv64gc-unknown-none-elf",
  15. ]
  16. [dependencies]
  17. bare-metal = "1.0.0"
  18. bit_field = "0.10.0"
  19. embedded-hal = "0.2.6"
  20. [build-dependencies]
  21. riscv-target = "0.1.2"
  22. [features]
  23. inline-asm = []