Browse Source

Merge pull request #178 from rust-osdev/mb2-hdr

multiboot2-header: bump dependency to multiboot2
Philipp Schuster 1 year ago
parent
commit
7399fbb9b0

+ 1 - 14
Cargo.lock

@@ -25,19 +25,6 @@ version = "0.4.20"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
 
 
-[[package]]
-name = "multiboot2"
-version = "0.16.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4b624a7b3f704734d98d21455b617607eb7043d4509d1c34bf9e7ff7dd47b31a"
-dependencies = [
- "bitflags",
- "derive_more",
- "log",
- "ptr_meta",
- "uefi-raw",
-]
-
 [[package]]
 [[package]]
 name = "multiboot2"
 name = "multiboot2"
 version = "0.19.0"
 version = "0.19.0"
@@ -54,7 +41,7 @@ name = "multiboot2-header"
 version = "0.3.1"
 version = "0.3.1"
 dependencies = [
 dependencies = [
  "derive_more",
  "derive_more",
- "multiboot2 0.16.0",
+ "multiboot2",
 ]
 ]
 
 
 [[package]]
 [[package]]

+ 3 - 16
integration-test/bins/Cargo.lock

@@ -94,19 +94,6 @@ dependencies = [
  "paste",
  "paste",
 ]
 ]
 
 
-[[package]]
-name = "multiboot2"
-version = "0.16.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4b624a7b3f704734d98d21455b617607eb7043d4509d1c34bf9e7ff7dd47b31a"
-dependencies = [
- "bitflags 2.4.0",
- "derive_more",
- "log",
- "ptr_meta",
- "uefi-raw",
-]
-
 [[package]]
 [[package]]
 name = "multiboot2"
 name = "multiboot2"
 version = "0.19.0"
 version = "0.19.0"
@@ -123,7 +110,7 @@ name = "multiboot2-header"
 version = "0.3.1"
 version = "0.3.1"
 dependencies = [
 dependencies = [
  "derive_more",
  "derive_more",
- "multiboot2 0.16.0",
+ "multiboot2",
 ]
 ]
 
 
 [[package]]
 [[package]]
@@ -135,7 +122,7 @@ dependencies = [
  "good_memory_allocator",
  "good_memory_allocator",
  "log",
  "log",
  "multiboot",
  "multiboot",
- "multiboot2 0.19.0",
+ "multiboot2",
  "multiboot2-header",
  "multiboot2-header",
  "util",
  "util",
 ]
 ]
@@ -147,7 +134,7 @@ dependencies = [
  "anyhow",
  "anyhow",
  "good_memory_allocator",
  "good_memory_allocator",
  "log",
  "log",
- "multiboot2 0.19.0",
+ "multiboot2",
  "util",
  "util",
  "x86",
  "x86",
 ]
 ]

+ 1 - 1
multiboot2-header/Cargo.toml

@@ -47,7 +47,7 @@ derive_more.workspace = true
 # log.workspace = true
 # log.workspace = true
 
 
 # used for MBI tags
 # used for MBI tags
-multiboot2 = "0.16.0"
+multiboot2 = "0.19.0"
 
 
 [package.metadata.docs.rs]
 [package.metadata.docs.rs]
 all-features = true
 all-features = true

+ 5 - 1
multiboot2-header/Changelog.md

@@ -1,9 +1,13 @@
 # CHANGELOG for crate `multiboot2-header`
 # CHANGELOG for crate `multiboot2-header`
 
 
+## 0.4.0 (2023-09-xx)
+- **BREAKING** MSRV is 1.68.0
+- **BREAKING** bumped `multiboot2` dependency to `v0.19.0`
+
 ## 0.3.0 (2023-06-23)
 ## 0.3.0 (2023-06-23)
 - **BREAKING** MSRV is 1.68.0
 - **BREAKING** MSRV is 1.68.0
 - **BREAKING** renamed the `std` feature to `alloc`
 - **BREAKING** renamed the `std` feature to `alloc`
-- **BREAKING** bumped dependency to `multiboot2@v0.16.0`
+- **BREAKING** bumped `multiboot2` dependency to `v0.16.0`
 - **BREAKING** renamed `MULTIBOOT2_HEADER_MAGIC` to `MAGIC`
 - **BREAKING** renamed `MULTIBOOT2_HEADER_MAGIC` to `MAGIC`
 - **BREAKING** renamed `Multiboot2HeaderBuilder` to `HeaderBuilder`
 - **BREAKING** renamed `Multiboot2HeaderBuilder` to `HeaderBuilder`
 - **BREAKING** renamed `from_addr` to `load`. The function now consumes a ptr.
 - **BREAKING** renamed `from_addr` to `load`. The function now consumes a ptr.

+ 1 - 1
multiboot2-header/README.md

@@ -69,7 +69,7 @@ You may need a special linker script to place this in a LOAD segment with a file
 See specification.
 See specification.
 
 
 ## MSRV
 ## MSRV
-The MSRV is 1.68.0 stable.
+The MSRV is 1.69.0 stable.
 
 
 ## License & Contribution
 ## License & Contribution
 
 

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

@@ -31,7 +31,7 @@
 //! ```
 //! ```
 //!
 //!
 //! ## MSRV
 //! ## MSRV
-//! The MSRV is 1.68.0 stable.
+//! The MSRV is 1.69.0 stable.
 
 
 #![no_std]
 #![no_std]
 #![cfg_attr(feature = "unstable", feature(error_in_core))]
 #![cfg_attr(feature = "unstable", feature(error_in_core))]