yggdrasil/kernel/arch/Cargo.toml

25 lines
688 B
TOML
Raw Normal View History

[package]
name = "kernel-arch"
version = "0.1.0"
edition = "2021"
2024-03-05 16:56:25 +02:00
[target.'cfg(all(target_os = "none", target_arch = "x86_64"))'.dependencies]
2025-01-17 02:25:49 +02:00
kernel-arch-x86_64.path = "x86_64"
2024-03-05 16:56:25 +02:00
[target.'cfg(all(target_os = "none", target_arch = "aarch64"))'.dependencies]
2025-01-17 02:25:49 +02:00
kernel-arch-aarch64.path = "aarch64"
2024-10-10 18:06:54 +03:00
[target.'cfg(all(target_os = "none", target_arch = "x86"))'.dependencies]
2025-01-17 02:25:49 +02:00
kernel-arch-i686.path = "i686"
[target.'cfg(all(target_os = "none", target_arch = "riscv64"))'.dependencies]
kernel-arch-riscv64.path = "riscv64"
2024-10-10 18:06:54 +03:00
2024-03-05 16:56:25 +02:00
[target.'cfg(not(target_os = "none"))'.dependencies]
2025-01-17 02:25:49 +02:00
kernel-arch-hosted.path = "hosted"
2024-03-05 16:56:25 +02:00
[dependencies]
2025-01-17 02:25:49 +02:00
kernel-arch-interface.path = "interface"
cfg-if.workspace = true