Browse Source

chore: Release

Philipp Schuster 11 months ago
parent
commit
c36066bd3a
2 changed files with 27 additions and 3 deletions
  1. 26 2
      Cargo.lock
  2. 1 1
      multiboot2/Cargo.toml

+ 26 - 2
Cargo.lock

@@ -28,12 +28,25 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
 [[package]]
 [[package]]
 name = "multiboot2"
 name = "multiboot2"
 version = "0.19.0"
 version = "0.19.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "be7a13d71fc2f7747af3ce60e5eccb638acd687b3a580d0bd579c6d0f7b9d010"
+dependencies = [
+ "bitflags",
+ "derive_more",
+ "log",
+ "ptr_meta",
+ "uefi-raw 0.3.0",
+]
+
+[[package]]
+name = "multiboot2"
+version = "0.20.0"
 dependencies = [
 dependencies = [
  "bitflags",
  "bitflags",
  "derive_more",
  "derive_more",
  "log",
  "log",
  "ptr_meta",
  "ptr_meta",
- "uefi-raw",
+ "uefi-raw 0.5.2",
 ]
 ]
 
 
 [[package]]
 [[package]]
@@ -41,7 +54,7 @@ name = "multiboot2-header"
 version = "0.3.2"
 version = "0.3.2"
 dependencies = [
 dependencies = [
  "derive_more",
  "derive_more",
- "multiboot2",
+ "multiboot2 0.19.0",
 ]
 ]
 
 
 [[package]]
 [[package]]
@@ -93,6 +106,17 @@ dependencies = [
  "unicode-ident",
  "unicode-ident",
 ]
 ]
 
 
+[[package]]
+name = "uefi-raw"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "62642516099c6441a5f41b0da8486d5fc3515a0603b0fdaea67b31600e22082e"
+dependencies = [
+ "bitflags",
+ "ptr_meta",
+ "uguid",
+]
+
 [[package]]
 [[package]]
 name = "uefi-raw"
 name = "uefi-raw"
 version = "0.5.2"
 version = "0.5.2"

+ 1 - 1
multiboot2/Cargo.toml

@@ -6,7 +6,7 @@ Multiboot2-compliant bootloaders, such as GRUB. It supports all tags from the
 specification including full support for the sections of ELF files. This library
 specification including full support for the sections of ELF files. This library
 is `no_std` and can be used in a Multiboot2-kernel.
 is `no_std` and can be used in a Multiboot2-kernel.
 """
 """
-version = "0.19.0"
+version = "0.20.0"
 authors = [
 authors = [
     "Philipp Oppermann <dev@phil-opp.com>",
     "Philipp Oppermann <dev@phil-opp.com>",
     "Calvin Lee <cyrus296@gmail.com>",
     "Calvin Lee <cyrus296@gmail.com>",