Cargo.toml 653 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "sbi-spec"
  3. description = "Definitions and constants in the RISC-V Supervisor Binary Interface (RISC-V SBI)"
  4. version = "0.0.8"
  5. authors = ["YdrMaster <[email protected]>", "Luo Jia <[email protected]>"]
  6. documentation = "https://docs.rs/sbi-spec"
  7. edition.workspace = true
  8. license.workspace = true
  9. repository.workspace = true
  10. readme = "README.md"
  11. keywords = ["riscv", "sbi", "rustsbi"]
  12. categories = ["os", "embedded", "hardware-support", "no-std"]
  13. [dev-dependencies]
  14. static_assertions = "1.1.0"
  15. [features]
  16. default = []
  17. # Support for the legacy extension; this feature is not included by default.
  18. legacy = []
  19. [dependencies]
  20. bitflags = "2.6.0"