Cargo.toml 570 B

123456789101112131415161718192021222324
  1. [package]
  2. authors = [
  3. "The RISC-V Team <[email protected]>",
  4. "Jorge Aparicio <[email protected]>",
  5. ]
  6. categories = ["embedded", "no-std"]
  7. description = "Attributes re-exported in `riscv-rt`"
  8. documentation = "https://docs.rs/riscv-rt"
  9. keywords = ["riscv", "runtime", "startup"]
  10. license = "MIT OR Apache-2.0"
  11. name = "riscv-rt-macros"
  12. repository = "https://github.com/rust-embedded/riscv"
  13. version = "0.2.1"
  14. [lib]
  15. proc-macro = true
  16. [dependencies]
  17. quote = "1.0"
  18. proc-macro2 = "1.0"
  19. [dependencies.syn]
  20. version = "1.0"
  21. features = ["extra-traits", "full"]