Cargo.toml 955 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "rustsbi"
  3. description = "Minimal RISC-V's SBI implementation library in Rust"
  4. version = "0.2.0-alpha.7"
  5. authors = [
  6. "Luo Jia <[email protected]>",
  7. "Campbell He <[email protected]>",
  8. "Yifan Wu <[email protected]>",
  9. ]
  10. repository = "https://github.com/rustsbi/rustsbi"
  11. documentation = "https://docs.rs/rustsbi"
  12. license = "MulanPSL-2.0 OR MIT"
  13. readme = "README.md"
  14. keywords = ["riscv", "sbi", "rustsbi"]
  15. categories = ["os", "embedded", "hardware-support", "no-std"]
  16. edition = "2018"
  17. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  18. [package.metadata.docs.rs]
  19. default-target = "riscv64imac-unknown-none-elf"
  20. targets = [
  21. "riscv32i-unknown-none-elf", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf",
  22. "riscv64imac-unknown-none-elf",
  23. ]
  24. [dependencies]
  25. embedded-hal = "0.2.6"
  26. nb = "1.0"
  27. riscv = "0.7"
  28. spin = { version = "0.9", features = ["ticket_mutex"] }