Cargo.toml 716 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "riscv"
  3. version = "0.6.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. [build-dependencies]
  20. riscv-target = "0.1.2"
  21. [features]
  22. inline-asm = []