Cargo.toml 853 B

1234567891011121314151617181920212223242526
  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. multiboot2 = { version = "0.22.2", default-features = false }
  16. multiboot2-common = { version = "0.1.2", default-features = false }
  17. ptr_meta = { version = "~0.2", default-features = false }
  18. # This way, the corresponding crate dependency can be normalley referenced by
  19. # version, while still the repository version is used transparently during local
  20. # development.
  21. [patch.crates-io]
  22. multiboot2 = { path = "multiboot2" }
  23. multiboot2-common = { path = "multiboot2-common" }
  24. multiboot2-header = { path = "multiboot2-header" }