4
0

Cargo.toml 955 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "sbi-testing"
  3. version = "0.0.3-alpha.2"
  4. description = "Provide a set of test cases for supervisors to verify functions of the supervisor executation environment"
  5. categories = ["os", "no-std"]
  6. keywords = ["riscv", "sbi", "rustsbi"]
  7. authors = ["YdrMaster <[email protected]>"]
  8. documentation = "https://docs.rs/sbi-testing"
  9. edition.workspace = true
  10. license.workspace = true
  11. repository.workspace = true
  12. readme = "README.md"
  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 = ["riscv32imac-unknown-none-elf", "riscv64imac-unknown-none-elf"]
  17. [dependencies]
  18. sbi-rt = { version = "0.0.3", path = "../sbi-rt" }
  19. sbi-spec = { version = "0.0.8", path = "../sbi-spec" }
  20. riscv = { version = "0.12.0", default-features = false }
  21. log = { version = "0.4", package = "log", optional = true }
  22. [features]
  23. log = ["dep:log"]