Cargo.toml 672 B

12345678910111213141516171819
  1. [package]
  2. name = "riscv-pac"
  3. version = "0.1.1"
  4. edition = "2021"
  5. rust-version = "1.60"
  6. repository = "https://github.com/rust-embedded/riscv"
  7. authors = ["The RISC-V Team <[email protected]>"]
  8. categories = ["embedded", "hardware-support", "no-std"]
  9. description = "Low level access to RISC-V processors"
  10. documentation = "https://docs.rs/riscv-pac"
  11. keywords = ["riscv", "register", "peripheral"]
  12. license = "ISC"
  13. [package.metadata.docs.rs]
  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. ]