Cargo.toml 672 B

1234567891011121314151617181920212223
  1. [workspace]
  2. resolver = "2"
  3. members = [
  4. "multiboot2",
  5. "multiboot2-common",
  6. "multiboot2-header",
  7. ]
  8. exclude = [
  9. "integration-test"
  10. ]
  11. [workspace.dependencies]
  12. bitflags = "2.6.0"
  13. derive_more = { version = "~0.99.18", default-features = false, features = ["display"] }
  14. log = { version = "~0.4", default-features = false }
  15. ptr_meta = { version = "~0.2", default-features = false }
  16. # This way, the corresponding crate dependency can be normalley referenced by
  17. # version, while still the repository version is used transparently during local
  18. # development.
  19. [patch.crates-io]
  20. multiboot2 = { path = "multiboot2" }
  21. multiboot2-common = { path = "multiboot2-common" }