Cargo.toml 901 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.1.1"
  8. authors = [
  9. "Philipp Schuster <phip1611@gmail.com>"
  10. ]
  11. license = "MIT/Apache-2.0"
  12. edition = "2018"
  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. # by default, builder is included
  31. default = ["builder"]
  32. std = []
  33. builder = ["std"]
  34. [dependencies]
  35. # used for MBI tags
  36. multiboot2 = "0.13.2"