Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "multiboot2"
  3. description = """
  4. Library that assists parsing the Multiboot2 Information Structure (MBI) from
  5. Multiboot2-compliant bootloaders, such as GRUB. It supports all tags from the
  6. specification including full support for the sections of ELF files. This library
  7. is `no_std` and can be used in a Multiboot2-kernel.
  8. """
  9. version = "0.19.0"
  10. authors = [
  11. "Philipp Oppermann <dev@phil-opp.com>",
  12. "Calvin Lee <cyrus296@gmail.com>",
  13. "Isaac Woods",
  14. "Philipp Schuster <phip1611@gmail.com>"
  15. ]
  16. license = "MIT/Apache-2.0"
  17. edition = "2021"
  18. categories = [
  19. "no-std",
  20. "parsing",
  21. ]
  22. keywords = [
  23. "Multiboot2",
  24. "kernel",
  25. "boot",
  26. "bootloader",
  27. ]
  28. # without this, sometimes crates.io doesn't show the preview of the README
  29. # I expeciended this multiple times in the past
  30. readme = "README.md"
  31. homepage = "https://github.com/rust-osdev/multiboot2"
  32. repository = "https://github.com/rust-osdev/multiboot2"
  33. documentation = "https://docs.rs/multiboot2"
  34. rust-version = "1.68"
  35. [features]
  36. default = ["builder"]
  37. alloc = []
  38. builder = ["alloc"]
  39. # Nightly-only features, which will eventually be stabilized.
  40. unstable = []
  41. [dependencies]
  42. bitflags.workspace = true
  43. derive_more.workspace = true
  44. log.workspace = true
  45. uefi-raw = { version = "0.3", default-features = false }
  46. ptr_meta = { version = "0.2", default-features = false }
  47. [package.metadata.docs.rs]
  48. all-features = true