Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "rustsbi"
  3. description = "Minimal RISC-V's SBI implementation library in Rust"
  4. version = "0.2.2"
  5. authors = [
  6. "Luo Jia <me@luojia.cc>",
  7. "Campbell He <hkp18@mails.tsinghua.edu.cn>",
  8. "Yifan Wu <shinbokuow@163.com>",
  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 = "2021"
  17. [dependencies]
  18. riscv = "0.8"
  19. # The following two dependencies are used to support legacy console feature
  20. embedded-hal = { version = "1.0.0-alpha.8", optional = true }
  21. nb = { version = "1.0", optional = true }
  22. [features]
  23. default = []
  24. # Support legacy extension; this feature is not included by default.
  25. legacy = ["embedded-hal", "nb"]
  26. # Dynamic pointer widths on SBI implementations; useful for developing hypervisors
  27. guest = []
  28. [package.metadata.docs.rs]
  29. default-target = "riscv64imac-unknown-none-elf"
  30. targets = [
  31. "riscv32imac-unknown-none-elf", "riscv64imac-unknown-none-elf",
  32. ]
  33. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html