Cargo.toml 264 B

1234567891011121314
  1. [workspace]
  2. # RustSBI library and all supported platforms
  3. members = [
  4. "rustsbi",
  5. "platform/*",
  6. "test-kernel",
  7. ]
  8. # these profiles are required for test kernel, not RustSBI library itself
  9. [profile.dev]
  10. panic = "abort"
  11. [profile.release]
  12. panic = "abort"