57 lines
1.8 KiB
TOML
57 lines
1.8 KiB
TOML
[package]
|
|
name = "yggdrasil-kernel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[profile.dev.package.tock-registers]
|
|
opt-level = 3
|
|
|
|
[dependencies]
|
|
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
|
|
vfs = { path = "lib/vfs" }
|
|
memfs = { path = "lib/memfs" }
|
|
device-api = { path = "lib/device-api", features = ["derive"] }
|
|
kernel-util = { path = "lib/kernel-util" }
|
|
memtables = { path = "lib/memtables" }
|
|
|
|
atomic_enum = "0.2.0"
|
|
bitflags = "2.3.3"
|
|
linked_list_allocator = "0.10.5"
|
|
spinning_top = "0.2.5"
|
|
static_assertions = "1.1.0"
|
|
tock-registers = "0.8.1"
|
|
cfg-if = "1.0.0"
|
|
git-version = "0.3.5"
|
|
|
|
log = "0.4.20"
|
|
futures-util = { version = "0.3.28", default-features = false, features = ["alloc", "async-await"] }
|
|
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
|
|
bytemuck = { version = "1.14.0", features = ["derive"] }
|
|
|
|
[dependencies.elf]
|
|
version = "0.7.2"
|
|
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
|
|
default-features = false
|
|
features = ["no_std_stream"]
|
|
|
|
[target.'cfg(target_arch = "aarch64")'.dependencies]
|
|
aarch64-cpu = "9.3.1"
|
|
fdt-rs = { version = "0.4.3", default-features = false }
|
|
|
|
[target.'cfg(target_arch = "x86_64")'.dependencies]
|
|
yboot-proto = { git = "https://git.alnyan.me/yggdrasil/yboot-proto.git" }
|
|
aml = { git = "https://github.com/alnyan/acpi.git", version = "0.16.4" }
|
|
acpi_lib = { git = "https://github.com/alnyan/acpi.git", version = "4.1.1", package = "acpi" }
|
|
acpi-system = { git = "https://github.com/alnyan/acpi-system.git", version = "0.1.0" }
|
|
# TODO currently only supported here
|
|
xhci_lib = { git = "https://github.com/rust-osdev/xhci.git", package = "xhci" }
|
|
|
|
[features]
|
|
default = ["fb_console"]
|
|
fb_console = []
|
|
aarch64_qemu = []
|
|
aarch64_orange_pi3 = []
|
|
aarch64_rpi3b = []
|