Cargo.toml 994 B

1234567891011121314151617181920212223242526272829303132333435
  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.1"
  10. authors = [
  11. "Philipp Oppermann <[email protected]>",
  12. "Calvin Lee <[email protected]>",
  13. "Isaac Woods",
  14. "Philipp Schuster <[email protected]>"
  15. ]
  16. license = "MIT/Apache-2.0"
  17. edition = "2018"
  18. categories = [
  19. "no-std",
  20. "parsing",
  21. ]
  22. keywords = [
  23. "Multiboot2",
  24. "kernel",
  25. "boot",
  26. ]
  27. # without this, sometimes crates.io doesn't show the preview of the README
  28. # I expeciended this multiple times in the past
  29. readme = "README.md"
  30. homepage = "https://github.com/rust-osdev/multiboot2"
  31. repository = "https://github.com/rust-osdev/multiboot2"
  32. documentation = "https://docs.rs/multiboot2"
  33. [dependencies]
  34. bitflags = "1"