-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 👷 Add clippy and rustfmt to CI jobs * feat: ✨ Complete rewrite * fix: 🍻 Replace `Rdsp` with `Rsdp` I accidentally wrote `Rdsp` instead of `Rsdp`, in multiple places. Oops! * docs: ✨ Add docs for the root crate * fix: 🚑 Use `i64` instead of `u64` in `BootTimeResponse` Additionally, export it as a `Duration` * fix: 🎨 Apply consistent formatting (attributes after doc comments) * fix: 🚑 Add `#[repr(C)]` to `memory_map::Entry` * fix: 🚑 Fix return type of `MemoryMapResponse::entries` and add `entries_mut` * feat: 🎨 Remove revision parameter from `new` `new` no longer takes a parameter. * feat: 🎨 Replace `InternalModules` with a regular old slice `InternalModules` no longer exists. Instead, a simple slice is used. * fix: 🐛 Feature gate `Ipv4Addr` until it's actually released Currently, it's only stable on 1.77. * docs: 🐛 Add docs for the `X2APIC` flag. * fix: 🐛 Override the default non-nightly toolchain * fix: 🐛 Correct `uuid` transformations * ci: 🔥 Remove `build` step Clippy already builds * ci: ✨ Run clippy for all supported architectures * style: 🎨 Move attributes after doc comments * fix: 🐛 Replace `u32` with `Option<NonZeroU32>` for MBR disk ID * refactor: 🔥 Return `&[u8]` instead of `Result<&str, &[u8]>` A user can attempt the conversion themself
- Loading branch information
1 parent
fd967c9
commit a0da169
Showing
19 changed files
with
1,996 additions
and
922 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
[package] | ||
name = "limine" | ||
description = "Rust crate for parsing the limine boot protocol structures" | ||
version = "0.1.12" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Anhad Singh <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
authors = [ | ||
"Anhad Singh <[email protected]>", | ||
"Lysander Mealy <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/limine-bootloader/limine-rs" | ||
|
||
readme = "README.md" | ||
categories = ["no-std"] | ||
|
||
[features] | ||
requests-section = ["limine-proc"] | ||
into-uuid = ["uuid"] | ||
default = [] | ||
|
||
[dependencies] | ||
limine-proc = { optional = true, version = "0.1.0" } | ||
uuid = { optional = true, version = "1.1.2", default-features = false } | ||
bitflags = "2" | ||
uuid = { version = "1", default-features = false, optional = true } | ||
|
||
[features] | ||
uuid = ["dep:uuid"] | ||
ipaddr = [] |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.