-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 588 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 588 Bytes
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
[workspace]
members = [
"bootloader/first_stage",
"bootloader/second_stage",
"crates/arch/x86",
"crates/common",
"crates/macros",
# "crates/drivers/ahci",
"crates/drivers/keyboard",
# "crates/drivers/pci",
"crates/drivers/vga-display",
"crates/memory/bump",
"crates/memory/buddy",
# "crates/memory/slab",
"crates/memory/page",
"crates/sync",
"crates/libk",
"kernel",
"tests",
"xtask",
# "snippets",
]
resolver = "2"
[profile.release]
opt-level = 's'
# overflow-checks = true
codegen-units = 1
panic = "abort"