Cargo.toml 933 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. [[example]]
  30. name = "minimal"
  31. required-features = ["builder"]
  32. [features]
  33. default = ["builder"]
  34. alloc = []
  35. builder = ["alloc"]
  36. [dependencies]
  37. # used for MBI tags
  38. multiboot2 = "0.13.2"