Cargo.toml 543 B

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