Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "multiboot2"
  3. description = """
  4. Library that helps you to parse the multiboot information structure (mbi) from
  5. Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
  6. including full support for the sections of ELF-64. This library is `no_std` and can be
  7. used in a Multiboot2-kernel.
  8. """
  9. version = "0.16.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.60"
  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 = "2"
  43. derive_more = { version = "0.99", default-features = false, features = ["display"] }
  44. log = { version = "0.4", default-features = false }
  45. uefi-raw = { version = "0.2.0", default-features = false }
  46. ptr_meta = { version = "0.2.0", default-features = false }