Cargo.toml 729 B

123456789101112131415161718192021222324252627
  1. [package]
  2. authors = [
  3. "The Cortex-M Team <[email protected]>",
  4. "Jorge Aparicio <[email protected]>",
  5. "The RISC-V Team <[email protected]>",
  6. ]
  7. description = "Semihosting for RISCV processors"
  8. documentation = "https://docs.rs/riscv-semihosting"
  9. keywords = ["semihosting", "riscv"]
  10. categories = ["no-std", "embedded"]
  11. license = "MIT OR Apache-2.0"
  12. name = "riscv-semihosting"
  13. readme = "README.md"
  14. repository = "https://github.com/riscv-rust/riscv"
  15. version = "0.1.0"
  16. edition = "2021"
  17. rust-version = "1.60.0"
  18. [features]
  19. u-mode = []
  20. jlink-quirks = []
  21. no-semihosting = []
  22. default = ["jlink-quirks"]
  23. [dependencies]
  24. critical-section = "1.0.0"
  25. riscv = { path = "../riscv", version = "0.11.0" }