-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (66 loc) · 1.43 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
[package]
name = "aetheros"
version = "0.1.0"
edition = "2021"
authors = ["AetherOS Team"]
description = "High-performance microkernel-based operating system"
[lib]
name = "aetheros"
path = "kernel/microkernel/lib.rs"
[dependencies]
spin = "0.9"
bitflags = "2.4"
volatile = "0.4"
x86_64 = "0.14"
acpi = "4.1"
lru = "0.12"
hashbrown = { version = "0.14", default-features = false }
crossbeam-queue = { version = "0.3", default-features = false, features = ["alloc"] }
lock_api = { version = "0.4", default-features = false }
uart_16550 = "0.3"
pic8259 = "0.10"
pc-keyboard = "0.7"
linked_list_allocator = "0.10"
raw-cpuid = "11.0"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
lazy_static = "1.4"
[target.'cfg(target_arch = "x86_64")'.dependencies]
x86 = "0.52"
aml = "0.16"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
debug = false
strip = true
incremental = false
overflow-checks = false
[profile.dev]
opt-level = 1
debug = true
[features]
default = ["performance"]
performance = []
debug = ["print-trace", "memory-trace"]
print-trace = []
memory-trace = []
[build]
target = "x86_64-unknown-none"
rustflags = [
"-C", "target-cpu=native",
"-C", "link-arg=-nostartfiles",
"-C", "link-arg=-static",
"-C", "link-arg=-Wl,--gc-sections",
"-C", "force-frame-pointers=yes",
]
[workspace]
members = [
"kernel",
"drivers",
"services",
"userspace",
]