Cargo.toml 662 B

1234567891011121314151617181920
  1. [package]
  2. name = "rustsbi"
  3. description = "Minimal RISC-V's SBI implementation library in Rust"
  4. version = "0.0.1"
  5. authors = ["luojia65 <[email protected]>"]
  6. repository = "https://github.com/luojia65/rustsbi"
  7. license = "MIT" # OR MulanPSL-2.0; cargo does not support by now
  8. license-file = "../LICENSE-MULAN"
  9. keywords = ["riscv", "sbi", "rustsbi"]
  10. categories = ["os", "embedded", "hardware-support", "no-std"]
  11. edition = "2018"
  12. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  13. [dependencies]
  14. embedded-hal = "1.0.0-alpha.1"
  15. nb = "1.0"
  16. riscv = "0.6"
  17. spin = "0.6"
  18. lazy_static = { version = "1", features = ["spin_no_std"] }