Эх сурвалжийг харах

multiboot2-header: prepare release 0.3.1

Philipp Schuster 1 жил өмнө
parent
commit
557a681625

+ 1 - 1
Cargo.lock

@@ -38,7 +38,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2-header"
-version = "0.3.0"
+version = "0.3.1"
 dependencies = [
  "derive_more",
  "multiboot2",

+ 4 - 1
multiboot2-header/Cargo.toml

@@ -4,7 +4,7 @@ description = """
 Library with type definitions and parsing functions for Multiboot2 headers.
 This library is `no_std` and can be used in bootloaders.
 """
-version = "0.3.0"
+version = "0.3.1"
 authors = [
     "Philipp Schuster <phip1611@gmail.com>"
 ]
@@ -48,3 +48,6 @@ derive_more.workspace = true
 
 # used for MBI tags
 multiboot2 = "0.16.0"
+
+[package.metadata.docs.rs]
+all-features = true

+ 1 - 1
multiboot2-header/src/header.rs

@@ -16,7 +16,7 @@ pub const MAGIC: u32 = 0xe85250d6;
 /// by all tags (see [`crate::tags::HeaderTagType`]).
 /// Use this if you get a pointer to the header and just want
 /// to parse it. If you want to construct the type by yourself,
-/// please look at [`crate::builder::HeaderBuilder`]..
+/// please look at `HeaderBuilder` (requires the `builder` feature).
 #[derive(Debug)]
 #[repr(transparent)]
 pub struct Multiboot2Header<'a>(&'a Multiboot2BasicHeader);

+ 3 - 0
multiboot2/Cargo.toml

@@ -47,3 +47,6 @@ log.workspace = true
 
 uefi-raw = { version = "0.3", default-features = false }
 ptr_meta = { version = "0.2", default-features = false }
+
+[package.metadata.docs.rs]
+all-features = true