yggdrasil/Cargo.toml

47 lines
1.2 KiB
TOML
Raw Normal View History

2023-07-18 18:03:45 +03:00
[package]
name = "yggdrasil-kernel"
version = "0.1.0"
edition = "2021"
2023-08-05 16:32:12 +03:00
build = "build.rs"
2023-07-18 18:03:45 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yggdrasil-abi = { git = "https://git.alnyan.me/yggdrasil/yggdrasil-abi.git" }
vfs = { path = "lib/vfs" }
memfs = { path = "lib/memfs" }
2023-07-18 18:03:45 +03:00
2023-08-01 18:05:10 +03:00
atomic_enum = "0.2.0"
2023-07-18 18:03:45 +03:00
bitflags = "2.3.3"
2023-07-30 16:40:30 +03:00
linked_list_allocator = "0.10.5"
spinning_top = "0.2.5"
2023-07-29 19:31:56 +03:00
# static_assertions = "1.1.0"
tock-registers = "0.8.1"
2023-07-28 14:26:39 +03:00
cfg-if = "1.0.0"
2023-07-30 16:40:30 +03:00
git-version = "0.3.5"
2023-07-18 18:03:45 +03:00
aarch64-cpu = "9.3.1"
bitmap-font = { version = "0.3.0", optional = true }
embedded-graphics = { version = "0.8.0", optional = true }
2023-07-20 18:51:56 +03:00
[dependencies.elf]
version = "0.7.2"
git = "https://git.alnyan.me/yggdrasil/yggdrasil-elf.git"
default-features = false
features = ["no_std_stream"]
2023-07-28 14:26:39 +03:00
2023-07-29 19:31:56 +03:00
[target.'cfg(target_arch = "aarch64")'.dependencies]
fdt-rs = { version = "0.4.3", default-features = false }
2023-07-28 14:26:39 +03:00
[target.'cfg(target_arch = "x86_64")'.dependencies]
yboot-proto = { git = "https://git.alnyan.me/yggdrasil/yboot-proto.git" }
aml = "0.16.4"
2023-08-02 20:43:21 +03:00
acpi = "4.1.1"
[features]
default = []
fb_console = ["bitmap-font", "embedded-graphics"]
aarch64_qemu = []
aarch64_orange_pi3 = []