Преглед на файлове

prepared cargo workspace, as discussed in PR #79

Philipp Schuster преди 3 години
родител
ревизия
90dbd439cc

+ 4 - 34
Cargo.toml

@@ -1,35 +1,5 @@
-[package]
-name = "multiboot2"
-description = """
-Library that helps you to parse the multiboot information structure (mbi) from
-Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
-including full support for the sections of ELF-64. This library is `no_std` and can be
-used in a Multiboot2-kernel.
-"""
-version = "0.12.1"
-authors = [
-    "Philipp Oppermann <dev@phil-opp.com>",
-    "Calvin Lee <cyrus296@gmail.com>",
-    "Isaac Woods",
-    "Philipp Schuster <phip1611@gmail.com>"
+[workspace]
+members = [
+    "multiboot2", # MBI
+    "multiboot2-header",
 ]
-license = "MIT/Apache-2.0"
-edition = "2018"
-categories = [
-    "no-std",
-    "parsing",
-]
-keywords = [
-    "Multiboot2",
-    "kernel",
-    "boot",
-]
-# 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"
-repository = "https://github.com/rust-osdev/multiboot2"
-documentation = "https://docs.rs/multiboot2"
-
-[dependencies]
-bitflags = "1"

+ 29 - 0
multiboot2-header/Cargo.toml

@@ -0,0 +1,29 @@
+[package]
+name = "multiboot2-header"
+description = """
+Library with type definitions and parsing functions for Multiboot2 headers.
+This library is `no_std` and can be used in bootloaders.
+"""
+version = "0.0.0"
+authors = [
+    "Philipp Schuster <phip1611@gmail.com>"
+]
+license = "MIT/Apache-2.0"
+edition = "2018"
+categories = [
+    "parsing",
+]
+keywords = [
+    "Multiboot2",
+    "kernel",
+    "boot",
+    "bootloader",
+]
+# 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-header"
+repository = "https://github.com/rust-osdev/multiboot2"
+documentation = "https://docs.rs/multiboot2-header"
+
+[dependencies]

+ 1 - 0
multiboot2-header/src/lib.rs

@@ -0,0 +1 @@
+//! TODO

+ 35 - 0
multiboot2/Cargo.toml

@@ -0,0 +1,35 @@
+[package]
+name = "multiboot2"
+description = """
+Library that helps you to parse the multiboot information structure (mbi) from
+Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
+including full support for the sections of ELF-64. This library is `no_std` and can be
+used in a Multiboot2-kernel.
+"""
+version = "0.12.1"
+authors = [
+    "Philipp Oppermann <dev@phil-opp.com>",
+    "Calvin Lee <cyrus296@gmail.com>",
+    "Isaac Woods",
+    "Philipp Schuster <phip1611@gmail.com>"
+]
+license = "MIT/Apache-2.0"
+edition = "2018"
+categories = [
+    "no-std",
+    "parsing",
+]
+keywords = [
+    "Multiboot2",
+    "kernel",
+    "boot",
+]
+# 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"
+repository = "https://github.com/rust-osdev/multiboot2"
+documentation = "https://docs.rs/multiboot2"
+
+[dependencies]
+bitflags = "1"

+ 0 - 0
src/boot_loader_name.rs → multiboot2/src/boot_loader_name.rs


+ 0 - 0
src/command_line.rs → multiboot2/src/command_line.rs


+ 0 - 0
src/efi.rs → multiboot2/src/efi.rs


+ 0 - 0
src/elf_sections.rs → multiboot2/src/elf_sections.rs


+ 0 - 0
src/framebuffer.rs → multiboot2/src/framebuffer.rs


+ 0 - 0
src/header.rs → multiboot2/src/header.rs


+ 0 - 0
src/image_load_addr.rs → multiboot2/src/image_load_addr.rs


+ 0 - 0
src/lib.rs → multiboot2/src/lib.rs


+ 0 - 0
src/memory_map.rs → multiboot2/src/memory_map.rs


+ 0 - 0
src/module.rs → multiboot2/src/module.rs


+ 0 - 0
src/rsdp.rs → multiboot2/src/rsdp.rs


+ 0 - 0
src/vbe_info.rs → multiboot2/src/vbe_info.rs