Cargo.toml 519 B

1234567891011121314151617181920
  1. [workspace]
  2. resolver = "2"
  3. members = [
  4. "multiboot2_chainloader",
  5. "multiboot2_payload",
  6. "util"
  7. ]
  8. [profile.release]
  9. codegen-units = 1
  10. lto = true
  11. [workspace.dependencies]
  12. anyhow = { version = "1.0", default-features = false }
  13. log = { version = "0.4", default-features = false }
  14. multiboot2 = { path = "../../multiboot2", features = ["builder", "unstable"] }
  15. multiboot2-header = { path = "../../multiboot2-header", features = ["builder", "unstable"] }
  16. good_memory_allocator = "0.1"
  17. util = { path = "./util" }