Cargo.toml 506 B

1234567891011121314151617
  1. [workspace]
  2. resolver = "2"
  3. members = [
  4. "multiboot2",
  5. "multiboot2-header",
  6. ]
  7. [workspace.dependencies]
  8. bitflags = "2"
  9. derive_more = { version = "0.99", default-features = false, features = ["display"] }
  10. log = { version = "0.4", default-features = false }
  11. # This way, the "multiboot2" dependency in the multiboot2-header crate can be
  12. # referenced by version, while still the repository version is used
  13. # transparently during local development.
  14. [patch.crates-io]
  15. multiboot2 = { path = "multiboot2" }