Cargo.toml 588 B

1234567891011121314151617181920212223
  1. [package]
  2. authors = [
  3. "The Cortex-M Team <cortex-m@teams.rust-embedded.org>",
  4. "Jorge Aparicio <japaricious@gmail.com>",
  5. ]
  6. description = "Semihosting for RISCV processors"
  7. documentation = "https://docs.rs/riscv-semihosting"
  8. keywords = ["semihosting", "riscv"]
  9. categories = ["no-std", "embedded"]
  10. license = "MIT OR Apache-2.0"
  11. name = "riscv-semihosting"
  12. readme = "README.md"
  13. repository = "https://github.com/riscv-rust/riscv-semihosting"
  14. version = "0.0.1"
  15. edition = "2018"
  16. [features]
  17. default = ["jlink-quirks"]
  18. jlink-quirks = []
  19. no-semihosting = []
  20. [dependencies]
  21. riscv = "0.8.0"