@@ -26,7 +26,7 @@ readme = "README.md"
homepage = "https://github.com/rust-osdev/multiboot2-header"
repository = "https://github.com/rust-osdev/multiboot2"
documentation = "https://docs.rs/multiboot2-header"
-rust-version = "1.68"
+rust-version = "1.69"
[[example]]
name = "minimal"
@@ -3,6 +3,7 @@
## Unreleased
- added `EndHeaderTag::default()`
+- MSRV is 1.69
## 0.3.2 (2023-11-30)
@@ -17,7 +18,7 @@
## 0.3.0 (2023-06-23)
-- **BREAKING** MSRV is 1.68.0
+- **BREAKING** MSRV is 1.68.0 (UPDATE: This is actually 1.69.)
- **BREAKING** renamed the `std` feature to `alloc`
- **BREAKING** bumped `multiboot2` dependency to `v0.16.0`
- **BREAKING** renamed `MULTIBOOT2_HEADER_MAGIC` to `MAGIC`
@@ -4,7 +4,6 @@ use crate::{
HeaderTag, HeaderTagISA, HeaderTagType, InformationRequestHeaderTag, ModuleAlignHeaderTag,
RelocatableHeaderTag,
};
-use core::convert::TryInto;
use core::fmt::{Debug, Formatter};
use core::mem::size_of;
@@ -31,7 +31,7 @@ readme = "README.md"
homepage = "https://github.com/rust-osdev/multiboot2"
documentation = "https://docs.rs/multiboot2"
[features]
default = ["builder"]
- added `InformationBuilder::default()`
## 0.19.0 (2023-09-21)
@@ -47,6 +47,7 @@ type SerializedTag = Vec<u8>;
/// Error that indicates a tag was added multiple times that is not allowed to
/// be there multiple times.
#[derive(Debug)]
+#[allow(unused)]
pub struct RedundantTagError(TagType);
impl Display for RedundantTagError {
@@ -8,7 +8,6 @@
use crate::TagTypeId;
use crate::{Tag, TagTrait, TagType};
/// EFI system table in 32 bit mode tag.
@@ -2,7 +2,7 @@
use crate::{Tag, TagTrait, TagType, TagTypeId};
#[cfg(feature = "builder")]
-use {core::convert::TryInto, core::mem::size_of};
+use core::mem::size_of;
/// The physical load address tag. Typically, this is only available if the
/// binary was relocated, for example if the relocatable header tag was
@@ -5,7 +5,6 @@ pub use uefi_raw::table::boot::MemoryDescriptor as EFIMemoryDesc;
pub use uefi_raw::table::boot::MemoryType as EFIMemoryAreaType;
use core::marker::PhantomData;
use core::mem;
@@ -13,11 +13,11 @@
//!
+#[cfg(feature = "builder")]
use core::slice;
use core::str;
use core::str::Utf8Error;
-#[cfg(feature = "builder")]
const RSDPV1_LENGTH: usize = 20;