2024-02-05 13:44:21 +02:00
|
|
|
[package]
|
|
|
|
name = "kernel-arch"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-03-05 16:56:25 +02:00
|
|
|
[target.'cfg(all(target_os = "none", target_arch = "x86_64"))'.dependencies]
|
2024-02-05 13:44:21 +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]
|
2024-02-05 13:44:21 +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]
|
|
|
|
kernel-arch-i686 = { path = "i686" }
|
|
|
|
|
2024-03-05 16:56:25 +02:00
|
|
|
[target.'cfg(not(target_os = "none"))'.dependencies]
|
|
|
|
kernel-arch-hosted = { path = "hosted" }
|
|
|
|
|
2024-02-05 13:44:21 +02:00
|
|
|
[dependencies]
|
|
|
|
kernel-arch-interface = { path = "interface" }
|
|
|
|
|
2024-11-01 20:37:30 +02:00
|
|
|
cfg-if.workspace = true
|