Cargo.toml 980 B

12345678910111213141516171819202122232425262728293031323334
  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.12.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 = "2018"
  18. categories = [
  19. "parsing",
  20. ]
  21. keywords = [
  22. "Multiboot2",
  23. "kernel",
  24. "boot",
  25. ]
  26. # without this, sometimes crates.io doesn't show the preview of the README
  27. # I expeciended this multiple times in the past
  28. readme = "README.md"
  29. homepage = "https://github.com/rust-osdev/multiboot2"
  30. repository = "https://github.com/rust-osdev/multiboot2"
  31. documentation = "https://docs.rs/multiboot2"
  32. [dependencies]
  33. bitflags = "1"