File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = """
44Library with type definitions and parsing functions for Multiboot2 headers.
55This library is `no_std` and can be used in bootloaders.
66"""
7- version = " 0.3.0 "
7+ version = " 0.3.1 "
88authors = [
99 " Philipp Schuster <phip1611@gmail.com>"
1010]
@@ -48,3 +48,6 @@ derive_more.workspace = true
4848
4949# used for MBI tags
5050multiboot2 = " 0.16.0"
51+
52+ [package .metadata .docs .rs ]
53+ all-features = true
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ pub const MAGIC: u32 = 0xe85250d6;
1616/// by all tags (see [`crate::tags::HeaderTagType`]).
1717/// Use this if you get a pointer to the header and just want
1818/// to parse it. If you want to construct the type by yourself,
19- /// please look at [`crate::builder:: HeaderBuilder`]. .
19+ /// please look at ` HeaderBuilder` (requires the `builder` feature) .
2020#[ derive( Debug ) ]
2121#[ repr( transparent) ]
2222pub struct Multiboot2Header < ' a > ( & ' a Multiboot2BasicHeader ) ;
Original file line number Diff line number Diff line change @@ -47,3 +47,6 @@ log.workspace = true
4747
4848uefi-raw = { version = " 0.3" , default-features = false }
4949ptr_meta = { version = " 0.2" , default-features = false }
50+
51+ [package .metadata .docs .rs ]
52+ all-features = true
You can’t perform that action at this time.
0 commit comments