-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (31 loc) · 891 Bytes
/
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
[package]
name = "ruel"
version = "0.0.1"
description = "An experimental x86_64 kernel, mainly to learn OS development."
authors = ["Nils Mathieu <[email protected]>"]
edition = "2021"
publish = false
[workspace]
resolver = "2"
members = [
"libs/sys",
"libs/std",
"crates/limine",
"crates/x86_64",
"crates/elf",
"crates/loose-enum",
]
[features]
default = ["boot-limine", "debug-serial", "init-elf"]
# Allows the kernel to be booted by a Limine bootloader.
boot-limine = ["dep:limine"]
# Allows the kernel to load the init process from an ELF file.
init-elf = ["dep:elf"]
# Allows the kernel to print debug messages to the serial port.
debug-serial = []
[dependencies]
ruel-sys = { path = "libs/sys" }
limine = { path = "crates/limine", optional = true }
elf = { path = "crates/elf", optional = true }
x86_64 = { path = "crates/x86_64" }
bitflags = "2"