Cargo.toml 741 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "riscv-peripheral"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. embedded-hal = "1.0.0"
  8. embedded-hal-async = { version = "1.0.0", optional = true }
  9. riscv = { path = "../riscv", version = "0.11.1" }
  10. riscv-pac = { path = "../riscv-pac", version = "0.1.1" }
  11. [dev-dependencies]
  12. heapless = "0.8.0"
  13. [features]
  14. aclint-hal-async = ["embedded-hal-async"]
  15. [package.metadata.docs.rs]
  16. all-features = true
  17. default-target = "riscv64imac-unknown-none-elf"
  18. targets = [
  19. "riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf",
  20. "riscv64imac-unknown-none-elf", "riscv64gc-unknown-none-elf",
  21. ]