-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 909 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 909 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
32
33
34
35
36
[workspace]
members = [
".", # Main kernel binary
"aether-core", # Shared kernel abstractions
"abi" # Application Binary Interface
]
exclude = ["init"]
resolver = "2"
[package]
name = "aether"
version = "0.1.0"
edition = "2021"
description = "Aether - Hybrid kernel with POSIX/glibc compatibility"
license = "GPL-3.0"
repository = "https://github.com/J-x-Z/Aether"
[dependencies]
uefi = { version = "0.28" }
log = "0.4"
aether-abi = { path = "./abi" }
aether-core = { path = "./aether-core" }
pc-keyboard = "0.8.0"
linked_list_allocator = "0.10.5"
[target.'cfg(target_arch = "x86_64")'.dependencies]
x86_64 = "0.14"
lazy_static = { version = "1.4", features = ["spin_no_std"] }
pic8259 = "0.10.1"
spin = "0.9"
[target.'cfg(target_arch = "aarch64")'.dependencies]
aarch64 = "0.0.11"
spin = "0.9"
cortex-a = "8.1"
lazy_static = { version = "1.4", features = ["spin_no_std"] }