Cargo.toml 750 B

1234567891011121314151617181920212223242526272829
  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.0.0"
  8. authors = [
  9. "Philipp Schuster <phip1611@gmail.com>"
  10. ]
  11. license = "MIT/Apache-2.0"
  12. edition = "2018"
  13. categories = [
  14. "parsing",
  15. ]
  16. keywords = [
  17. "Multiboot2",
  18. "kernel",
  19. "boot",
  20. "bootloader",
  21. ]
  22. # without this, sometimes crates.io doesn't show the preview of the README
  23. # I expeciended this multiple times in the past
  24. readme = "README.md"
  25. homepage = "https://github.com/rust-osdev/multiboot2-header"
  26. repository = "https://github.com/rust-osdev/multiboot2"
  27. documentation = "https://docs.rs/multiboot2-header"
  28. [dependencies]