Explorar o código

chore: Release

Philipp Schuster hai 11 meses
pai
achega
c36066bd3a
Modificáronse 2 ficheiros con 27 adicións e 3 borrados
  1. 26 2
      Cargo.lock
  2. 1 1
      multiboot2/Cargo.toml

+ 26 - 2
Cargo.lock

@@ -28,12 +28,25 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
 [[package]]
 name = "multiboot2"
 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 = [
  "bitflags",
  "derive_more",
  "log",
  "ptr_meta",
- "uefi-raw",
+ "uefi-raw 0.5.2",
 ]
 
 [[package]]
@@ -41,7 +54,7 @@ name = "multiboot2-header"
 version = "0.3.2"
 dependencies = [
  "derive_more",
- "multiboot2",
+ "multiboot2 0.19.0",
 ]
 
 [[package]]
@@ -93,6 +106,17 @@ dependencies = [
  "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]]
 name = "uefi-raw"
 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
 is `no_std` and can be used in a Multiboot2-kernel.
 """
-version = "0.19.0"
+version = "0.20.0"
 authors = [
     "Philipp Oppermann <dev@phil-opp.com>",
     "Calvin Lee <cyrus296@gmail.com>",