Cargo.toml 881 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "riscv"
  3. version = "0.10.1"
  4. edition = "2021"
  5. rust-version = "1.59"
  6. repository = "https://github.com/rust-embedded/riscv"
  7. authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
  8. categories = ["embedded", "hardware-support", "no-std"]
  9. description = "Low level access to RISC-V processors"
  10. keywords = ["riscv", "register", "peripheral"]
  11. license = "ISC"
  12. [package.metadata.docs.rs]
  13. all-features = true
  14. default-target = "riscv64imac-unknown-none-elf"
  15. targets = [
  16. "riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf",
  17. "riscv64imac-unknown-none-elf", "riscv64gc-unknown-none-elf",
  18. ]
  19. [features]
  20. critical-section-single-hart = ["critical-section/restore-state-bool"]
  21. plic = ["volatile-register"]
  22. [dependencies]
  23. critical-section = "1.1.0"
  24. embedded-hal = "0.2.6"
  25. volatile-register = {version = "0.2.1", optional = true}