-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
97 lines (89 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[workspace]
members = [
"kernel",
"meta",
"bootloader",
"bootloader/stage-bootsector",
"bootloader/stage-16bit",
"bootloader/stage-32bit",
"bootloader/stage-64bit",
"crates/bios",
"crates/arch",
"crates/fs",
"crates/bits",
"crates/binfont",
"crates/bootgfx",
"crates/lldebug",
"crates/serial",
"crates/lldebug-macro",
"crates/hw",
"crates/hw-macro",
"crates/util",
"crates/elf",
"crates/mem",
"crates/arch-macro"
]
default-members = ["meta"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["corigan01 <corigan01@gmail.com>"]
description = "Quantum Operating System"
documentation = "https://github.com/corigan01/QuantumOS"
[workspace.dependencies]
arch = { path = "crates/arch" }
arch-macro = { path = "crates/arch-macro" }
bios = { path = "crates/bios" }
fs = { path = "crates/fs" }
bits = { path = "crates/bits" }
bootloader = { path = "bootloader/" }
binfont = { path = "crates/binfont" }
bootgfx = { path = "crates/bootgfx" }
serial = { path = "crates/serial" }
lldebug = { path = "crates/lldebug" }
lldebug-macro = { path = "crates/lldebug-macro" }
hw = { path = "crates/hw" }
hw-macro = { path = "crates/hw-macro" }
util = { path = "crates/util" }
elf = { path = "crates/elf" }
mem = { path = "crates/mem" }
[profile.stage-bootsector]
inherits = "release"
panic = "abort"
opt-level="z"
strip = false
lto = true
codegen-units = 1
debug = 0
overflow-checks = false
[profile.stage-16bit]
inherits = "release"
panic = "abort"
opt-level="z"
strip = false
lto = true
codegen-units = 1
debug = 0
overflow-checks = false
[profile.stage-32bit]
inherits = "release"
panic = "abort"
opt-level="z"
strip = false
lto = true
debug = 0
overflow-checks = true
[profile.stage-64bit]
inherits = "release"
panic = "abort"
opt-level="z"
strip = false
lto = true
debug = 0
overflow-checks = true
[profile.kernel]
inherits = "release"
panic = "abort"
strip = false
debug = 1
overflow-checks = true