-
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 #127 from rust-osdev/iterator-fix
multiboot2: convenience and safety fixes (0.15.1)
- Loading branch information
Showing
6 changed files
with
55 additions
and
32 deletions.
There are no files selected for viewing
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 @@ Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the speci | |
including full support for the sections of ELF-64. This library is `no_std` and can be | ||
used in a Multiboot2-kernel. | ||
""" | ||
version = "0.15.0" | ||
version = "0.15.1" | ||
authors = [ | ||
"Philipp Oppermann <[email protected]>", | ||
"Calvin Lee <[email protected]>", | ||
|
@@ -38,4 +38,5 @@ unstable = [] | |
|
||
[dependencies] | ||
bitflags = "1" | ||
derive_more = { version = "0.99.17", default-features = false, features = ["display"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["display"] } | ||
log = { version = "0.4", default-features = false } |
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
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
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