Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "rustsbi-prototyper"
  3. version = "0.0.0"
  4. edition.workspace = true
  5. license.workspace = true
  6. repository.workspace = true
  7. [dependencies]
  8. aclint = "=0.1.0"
  9. log = "0.4"
  10. panic-halt = "1.0.0"
  11. riscv = "0.12.1"
  12. sifive-test-device = "0.0.0"
  13. spin = "0.9.8"
  14. uart16550 = "0.0.1"
  15. riscv-decode = "0.2.1"
  16. cfg-if = "1.0.0"
  17. buddy_system_allocator = "0.11.0"
  18. rustsbi = { version = "0.4.0", features = ["machine"], path = "../../library/rustsbi" }
  19. sbi-spec = { version = "0.0.8", features = ["legacy"], path = "../../library/sbi-spec" }
  20. serde = { version = "1.0.202", default-features = false, features = ["derive"] }
  21. fast-trap = { version = "0.1.0", features = ["riscv-m"] }
  22. serde-device-tree = { git = "https://github.com/rustsbi/serde-device-tree", rev = "e7f9404f", default-features = false }
  23. uart_xilinx = { git = "https://github.com/duskmoon314/uart-rs/" }
  24. xuantie-riscv = { git= "https://github.com/rustsbi/xuantie" }
  25. bouffalo-hal = { git = "https://github.com/rustsbi/bouffalo-hal", rev = "968b949", features = ["bl808"] }
  26. static-toml = "1"
  27. [[bin]]
  28. name = "rustsbi-prototyper"
  29. test = false
  30. bench = false
  31. [features]
  32. nemu = []
  33. payload = []
  34. jump = []
  35. fdt = []