Cargo.toml 879 B

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