Cargo.toml 678 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "zerosp-ch56x-pac"
  3. version = "0.1.0"
  4. edition = "2018"
  5. authors = ["ZRY (https://git.swzry.com/zry/)"]
  6. repository = "https://git.swzry.com/zry/zerosp-ch56x-pac"
  7. categories = ["embedded", "hardware-support", "no-std"]
  8. description = "Non-official Peripheral access API for WCH CH56x. Belonging to ZEROSP Plan."
  9. keywords = ["riscv", "ch56x", "register", "peripheral", "zerosp", "non-official"]
  10. license = "MIT"
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. bare-metal = "0.2.4"
  14. riscv = "0.6.0"
  15. vcell = "0.1.2"
  16. [dependencies.riscv-rt]
  17. optional = true
  18. version = "0.4.0"
  19. [features]
  20. rt = ["riscv-rt"]