Cargo.toml 738 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "multiboot2-common"
  3. description = """
  4. Common helpers for the `multiboot2` and `multiboot2-header` crates.
  5. """
  6. version = "0.1.2"
  7. authors = [
  8. "Philipp Schuster <[email protected]>"
  9. ]
  10. license = "MIT/Apache-2.0"
  11. edition = "2021"
  12. categories = [
  13. "no-std",
  14. "no-std::no-alloc",
  15. ]
  16. keywords = [
  17. "Multiboot2"
  18. ]
  19. readme = "README.md"
  20. homepage = "https://github.com/rust-osdev/multiboot2"
  21. repository = "https://github.com/rust-osdev/multiboot2"
  22. documentation = "https://docs.rs/multiboot2-common"
  23. rust-version = "1.70"
  24. [features]
  25. default = ["builder"]
  26. alloc = []
  27. builder = ["alloc"]
  28. unstable = []
  29. [dependencies]
  30. derive_more.workspace = true
  31. ptr_meta.workspace = true
  32. [package.metadata.docs.rs]
  33. all-features = true