-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathCargo.toml
53 lines (49 loc) · 1.37 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "multiboot2-header"
description = """
Convenient and safe parsing of Multiboot2 Header structures and the
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.6.0"
authors = [
"Philipp Schuster <[email protected]>"
]
license = "MIT/Apache-2.0"
edition = "2021"
categories = [
"no-std",
"no-std::no-alloc",
"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/tree/main/multiboot2-header"
repository = "https://github.com/rust-osdev/multiboot2"
documentation = "https://docs.rs/multiboot2-header"
rust-version = "1.75"
[[example]]
name = "minimal"
required-features = ["builder"]
[features]
default = ["builder"]
alloc = ["multiboot2-common/alloc"]
builder = ["alloc", "multiboot2-common/builder"]
# Nightly-only features, which will eventually be stabilized.
unstable = ["multiboot2-common/unstable"]
[dependencies]
derive_more.workspace = true
log.workspace = true
multiboot2-common.workspace = true
multiboot2.workspace = true
ptr_meta.workspace = true
[package.metadata.docs.rs]
all-features = true