-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from rust-osdev/update
workspace: prepare updates
- Loading branch information
Showing
9 changed files
with
28 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "multiboot2-common" | |
description = """ | ||
Common helpers for the `multiboot2` and `multiboot2-header` crates. | ||
""" | ||
version = "0.1.2" | ||
version = "0.2.0" | ||
authors = [ | ||
"Philipp Schuster <[email protected]>" | ||
] | ||
|
@@ -17,7 +17,7 @@ keywords = [ | |
"Multiboot2" | ||
] | ||
readme = "README.md" | ||
homepage = "https://github.com/rust-osdev/multiboot2" | ||
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2-common" | ||
repository = "https://github.com/rust-osdev/multiboot2" | ||
documentation = "https://docs.rs/multiboot2-common" | ||
rust-version = "1.75" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ contained header tags. Usable in no_std environments, such as a | |
bootloader. An optional builder feature also allows the construction of | ||
the corresponding structures. | ||
""" | ||
version = "0.5.1" | ||
version = "0.6.0" | ||
authors = [ | ||
"Philipp Schuster <[email protected]>" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ structures and the contained information tags. Usable in `no_std` environments, | |
such as a kernel. An optional builder feature also allows the construction of | ||
the corresponding structures. | ||
""" | ||
version = "0.22.2" | ||
version = "0.23.0" | ||
authors = [ | ||
"Philipp Oppermann <[email protected]>", | ||
"Calvin Lee <[email protected]>", | ||
|
@@ -29,7 +29,7 @@ keywords = [ | |
# without this, sometimes crates.io doesn't show the preview of the README | ||
# I expeciended this multiple times in the past | ||
readme = "README.md" | ||
homepage = "https://github.com/rust-osdev/multiboot2" | ||
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2" | ||
repository = "https://github.com/rust-osdev/multiboot2" | ||
documentation = "https://docs.rs/multiboot2" | ||
rust-version = "1.75" | ||
|
@@ -47,11 +47,7 @@ derive_more.workspace = true | |
log.workspace = true | ||
ptr_meta.workspace = true | ||
multiboot2-common.workspace = true | ||
# We only use a very basic type definition from this crate. To prevent MSRV | ||
# bumps from uefi-raw, I restrict this here. Upstream users are likely to have | ||
# two versions of this library in it, which is no problem, as we only use the | ||
# type definition. | ||
uefi-raw = { version = "~0.7", default-features = false } | ||
uefi-raw = { version = "~0.8.0", default-features = false } | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true |