Cargo.toml 871 B

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "multiboot2-header"
  3. description = """
  4. Library with type definitions and parsing functions for Multiboot2 headers.
  5. This library is `no_std` and can be used in bootloaders.
  6. """
  7. version = "0.2.0"
  8. authors = [
  9. "Philipp Schuster <phip1611@gmail.com>"
  10. ]
  11. license = "MIT/Apache-2.0"
  12. edition = "2021"
  13. categories = [
  14. "no-std",
  15. "parsing",
  16. ]
  17. keywords = [
  18. "Multiboot2",
  19. "kernel",
  20. "boot",
  21. "bootloader",
  22. ]
  23. # without this, sometimes crates.io doesn't show the preview of the README
  24. # I expeciended this multiple times in the past
  25. readme = "README.md"
  26. homepage = "https://github.com/rust-osdev/multiboot2-header"
  27. repository = "https://github.com/rust-osdev/multiboot2"
  28. documentation = "https://docs.rs/multiboot2-header"
  29. [features]
  30. default = ["builder"]
  31. alloc = []
  32. builder = ["alloc"]
  33. [dependencies]
  34. # used for MBI tags
  35. multiboot2 = "0.13.2"