1234567891011121314151617181920212223242526272829303132333435 |
- [package]
- name = "multiboot2"
- description = """
- Library that helps you to parse the multiboot information structure (mbi) from
- Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
- including full support for the sections of ELF-64. This library is `no_std` and can be
- used in a Multiboot2-kernel.
- """
- version = "0.12.1"
- authors = [
- "Philipp Oppermann <[email protected]>",
- "Calvin Lee <[email protected]>",
- "Isaac Woods",
- "Philipp Schuster <[email protected]>"
- ]
- license = "MIT/Apache-2.0"
- edition = "2018"
- categories = [
- "no-std",
- "parsing",
- ]
- keywords = [
- "Multiboot2",
- "kernel",
- "boot",
- ]
- # without this, sometimes crates.io doesn't show the preview of the README
- # I expeciended this multiple times in the past
- readme = "README.md"
- homepage = "https://github.com/rust-osdev/multiboot2"
- repository = "https://github.com/rust-osdev/multiboot2"
- documentation = "https://docs.rs/multiboot2"
- [dependencies]
- bitflags = "1"
|