Cargo.toml 329 B

12345678910111213
  1. [workspace]
  2. resolver = "2"
  3. members = [
  4. "multiboot2",
  5. "multiboot2-header",
  6. ]
  7. # This way, the "multiboot2" dependency in the multiboot2-header crate can be
  8. # referenced by version, while still the repository version is used
  9. # transparently during local development.
  10. [patch.crates-io]
  11. multiboot2 = { path = "multiboot2" }