Cargo.toml 815 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "riscv"
  3. version = "0.9.0"
  4. edition = "2021"
  5. rust-version = "1.59"
  6. repository = "https://github.com/rust-embedded/riscv"
  7. authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
  8. categories = ["embedded", "hardware-support", "no-std"]
  9. description = "Low level access to RISC-V processors"
  10. keywords = ["riscv", "register", "peripheral"]
  11. license = "ISC"
  12. [package.metadata.docs.rs]
  13. default-target = "riscv64imac-unknown-none-elf"
  14. targets = [
  15. "riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf",
  16. "riscv64imac-unknown-none-elf", "riscv64gc-unknown-none-elf",
  17. ]
  18. [features]
  19. critical-section-single-hart = ["critical-section/restore-state-bool"]
  20. [dependencies]
  21. bare-metal = "1.0.0"
  22. bit_field = "0.10.0"
  23. critical-section = "1.1.0"
  24. embedded-hal = "0.2.6"