Cargo.toml 871 B

12345678910111213141516171819202122232425262728293031323334353637
  1. cargo-features = ["per-package-target"]
  2. [package]
  3. name = "rustsbi-prototyper"
  4. version = "0.0.0"
  5. edition.workspace = true
  6. license.workspace = true
  7. repository.workspace = true
  8. forced-target = "riscv64imac-unknown-none-elf"
  9. [dependencies]
  10. aclint = "0.0.0"
  11. log = "0.4.21"
  12. panic-halt = "0.2.0"
  13. riscv = "0.11.1"
  14. rustsbi = { version = "0.4.0-alpha.3", features = ["machine"] }
  15. serde = { version = "1.0.202", default-features = false, features = ["derive"]}
  16. serde-device-tree = { git = "https://github.com/rustsbi/serde-device-tree", default-features = false }
  17. sifive-test-device = "0.0.0"
  18. spin = "0.9.8"
  19. uart16550 = "0.0.1"
  20. [[bin]]
  21. name = "rustsbi-prototyper"
  22. test = false
  23. bench = false
  24. [workspace]
  25. members = ["xtask"]
  26. [workspace.package]
  27. edition = "2021"
  28. license = "MulanPSL-2.0 OR MIT"
  29. repository = "https://github.com/rustsbi/prototyper"
  30. [profile.release]
  31. debug = true